UNPKG

typescript-member-signatures

Version:

Command line tool to extract given interface member signatures as JSON strings, recursively in the extends chain with the purpose of documentation

8 lines (7 loc) 176 B
import { Result } from './types'; interface Options { result: Result; exportName?: string; } export declare function resultToTypeScript(o: Options): string; export {};