https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 1d850c0927107d0f0f1efdfc3c160436ed010c92 authored by TypeScript Bot on 10 May 2021, 19:48:05 UTC
Cherry-pick PR #44008 into release-4.3 (#44029)
Tip revision: 1d850c0
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