From dc516c050ab07f4b8a10355595ead436bbb568e5 Mon Sep 17 00:00:00 2001 From: Paul van Brenk Date: Tue, 11 Oct 2016 17:30:49 -0700 Subject: [PATCH] Remove duplicate interface --- src/server/protocol.d.ts | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/server/protocol.d.ts b/src/server/protocol.d.ts index 3ef02d4e493..22799ee4759 100644 --- a/src/server/protocol.d.ts +++ b/src/server/protocol.d.ts @@ -1,4 +1,4 @@ -/** +/** * Declaration module describing the TypeScript Server protocol */ declare namespace ts.server.protocol { @@ -1592,16 +1592,4 @@ declare namespace ts.server.protocol { export interface NavBarResponse extends Response { body?: NavigationBarItem[]; } - - export interface CodeAction { - /** - * Description of the code action to display in the UI of the editor. - */ - description: string; - - /** - * Changes to apply to each file as part of the code action. - */ - changes: FileCodeEdits[]; - } }