https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 76401adba33b71e70d76961d7d66064243be0243 authored by TypeScript Bot on 16 June 2022, 17:59:56 UTC
Bump version to 4.7.4 and LKG
Tip revision: 76401ad
builderStatePublic.ts
namespace ts {
    export interface EmitOutput {
        outputFiles: OutputFile[];
        emitSkipped: boolean;
        /* @internal */ diagnostics: readonly Diagnostic[];
        /* @internal */ exportedModulesFromDeclarationEmit?: ExportedModulesFromDeclarationEmit;
    }

    export interface OutputFile {
        name: string;
        writeByteOrderMark: boolean;
        text: string;
    }
}
back to top