flow2schema/tests/samples/externals/second.js

18 lines
163 B
JavaScript
Raw Normal View History

2017-11-09 12:10:21 +03:00
type N = {
2017-11-04 22:13:08 +03:00
n: boolean,
};
2017-11-09 12:10:21 +03:00
export class M {
2017-11-04 22:13:08 +03:00
m: string;
}
interface KK {
k: number;
}
2017-11-09 12:10:21 +03:00
export default class P {
2017-11-04 22:13:08 +03:00
p: number;
}
2017-11-09 12:10:21 +03:00
export {N, KK as K};