typedef-converter icon indicating copy to clipboard operation
typedef-converter copied to clipboard

Converts typescript definition files to flowtype library files

Results 2 typedef-converter issues
Sort by recently updated
recently updated
newest added

When using a .d.ts file to declare global interfaces, e.g.: ```ts interface AttrDef { propName: string; } ``` the converter will produce: ```js declare module 'root' { declare interface AttrDef...

Some libraries I'd like to consume in our TS app are written in flow-type, or expose flow-type definitions. I'd also prefer not to write duplicate type definitions. :simple_smile: How difficult...