UNPKG

tsgen2

Version:

Generates Typescript code programatically

10 lines (9 loc) 290 B
import { Treeable } from "./TsGenUtil"; export declare class TsGenDeclaration implements Treeable { initial: string; name: string; type: string; constructor(name: string, type: string, initial?: string); toString(indent?: number): string; toArrayTree(): string[]; }