From 4e00f75408e279e8b773932dccad87659afca55e Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Mon, 1 Feb 2021 14:26:07 -0800 Subject: [PATCH] Remove stubs file reference protocol --- .../src/protocol.d.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/extensions/typescript-language-features/src/protocol.d.ts b/extensions/typescript-language-features/src/protocol.d.ts index e202c0097fe..9cf1f851e48 100644 --- a/extensions/typescript-language-features/src/protocol.d.ts +++ b/extensions/typescript-language-features/src/protocol.d.ts @@ -10,21 +10,5 @@ declare module 'typescript/lib/protocol' { interface Response { readonly _serverType?: ServerType; } - - interface FileReferencesRequest extends FileRequest { - } - interface FileReferencesResponseBody { - /** - * The file locations referencing the symbol. - */ - refs: readonly ReferencesResponseItem[]; - /** - * The name of the symbol. - */ - symbolName: string; - } - interface FileReferencesResponse extends Response { - body?: FileReferencesResponseBody; - } }