JS: support additional export statements for Flow

This commit is contained in:
Esben Sparre Andreasen
2019-01-02 14:18:36 +01:00
parent c6f9a043ca
commit 45a4026385
5 changed files with 447 additions and 91 deletions

View File

@@ -0,0 +1,5 @@
export { a } from "m";
export * from "m";
export type { b } from "m";
export type * from "m";
export type * as fooTypes from "foo";