• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1namespace ts {
2    export interface EmitOutput {
3        outputFiles: OutputFile[];
4        emitSkipped: boolean;
5        /* @internal */ diagnostics: readonly Diagnostic[];
6    }
7
8    export interface OutputFile {
9        name: string;
10        writeByteOrderMark: boolean;
11        text: string;
12        /* @internal */ buildInfo?: BuildInfo
13    }
14}
15