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