flow2schema/tests/samples/typeInMethod.js

13 lines
161 B
JavaScript

class Test {
foo() {
type X = {
t: Test,
};
// TODO: replace with commonjs.
export {X};
}
}
export {Test};