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