1import { BuildInfo, Diagnostic } from "./_namespaces/ts"; 2 3export interface EmitOutput { 4 outputFiles: OutputFile[]; 5 emitSkipped: boolean; 6 /** @internal */ diagnostics: readonly Diagnostic[]; 7} 8 9export interface OutputFile { 10 name: string; 11 writeByteOrderMark: boolean; 12 text: string; 13 /** @internal */ buildInfo?: BuildInfo 14} 15