Remove duplicate interface

This commit is contained in:
Paul van Brenk
2016-10-11 17:30:49 -07:00
parent 7c96c28863
commit dc516c050a

View File

@@ -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[];
}
}