flow2schema/tests/samples/typeInMethod.js

13 lines
161 B
JavaScript
Raw Normal View History

2017-11-03 01:42:40 +03:00
class Test {
foo() {
type X = {
t: Test,
};
2017-11-09 12:10:21 +03:00
// TODO: replace with commonjs.
export {X};
2017-11-03 01:42:40 +03:00
}
}
2017-11-09 12:10:21 +03:00
export {Test};