It is often useful to share types in between modules (files). In Flow, you can export type aliases, interfaces, and classes from one file and import them in another.
exports.js
// @flow
export default class Foo {};
export type MyObject = { /* ... */ };
export interface MyInterface { /* ... */ };
imports.js
// @flow
import type Foo, {MyObject, MyInterface} from './exports';
Don’t forget to mention
@flowon top of file, otherwise flow won’t report errors.
Flow also supports importing the type of values exported by other modules using typeof.
exports.js
// @flow
const myNumber = 42;
export default myNumber;
export class MyClass {
// ...
}
imports.js
// @flow
import typeof myNumber from './exports';
import typeof {MyClass} from './exports';
Just like other type imports, this code will be stripped away by a compiler and will not add a dependency on the other module.
© 2013–present Facebook Inc.
Licensed under the MIT License.
https://flow.org/en/docs/types/modules