From 21a6a9afccd9bcb4de12a9b85006d16e9984f67b Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 4 May 2018 15:51:46 -0700 Subject: [PATCH] Remove unused interface (#23905) --- src/compiler/utilities.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/compiler/utilities.ts b/src/compiler/utilities.ts index 3f7affcc044..7cf00b04846 100644 --- a/src/compiler/utilities.ts +++ b/src/compiler/utilities.ts @@ -6,13 +6,6 @@ namespace ts { export const externalHelpersModuleNameText = "tslib"; - export interface ReferencePathMatchResult { - fileReference?: FileReference; - diagnosticMessage?: DiagnosticMessage; - isNoDefaultLib?: boolean; - isTypeReferenceDirective?: boolean; - } - export function getDeclarationOfKind(symbol: Symbol, kind: T["kind"]): T { const declarations = symbol.declarations; if (declarations) {