UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

17 lines (15 loc) 306 B
module Module { export interface ExportedInterface { f(arg: number): void; x: number; } interface PrivateInterface { g(arg: string): number; y: boolean; } interface ParentInterface { Child: { childProperty: number; } } }