From a4ca0716eb8806c010ef8bf20c8cd104d077fdb1 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Fri, 9 Mar 2018 09:41:11 -0800 Subject: [PATCH] Reverted now-unused ProgramDiagnosticsAndEmit --- src/compiler/watch.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/compiler/watch.ts b/src/compiler/watch.ts index aeeab45f9d4..ac46e28c42e 100644 --- a/src/compiler/watch.ts +++ b/src/compiler/watch.ts @@ -127,13 +127,6 @@ namespace ts { emit(): EmitResult; } - /** @internal */ - export interface ProgramDiagnosticsAndEmit { - diagnostics: Diagnostic[]; - emittedFiles: string[]; - emitSkipped: boolean; - } - /** @internal */ export type ReportEmitErrorSummary = (errorCount: number) => void;