Project

General

Profile

1
import { Statement } from '../output/output_ast';
2
export declare class GeneratedFile {
3
    srcFileUrl: string;
4
    genFileUrl: string;
5
    source: string | null;
6
    stmts: Statement[] | null;
7
    constructor(srcFileUrl: string, genFileUrl: string, sourceOrStmts: string | Statement[]);
8
}
9
export declare function toTypeScript(file: GeneratedFile, preamble?: string): string;
(9-9/22)