Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/lsp_ext.ts')
| -rw-r--r-- | editors/code/src/lsp_ext.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts index 29349cc20f..6ddf83799c 100644 --- a/editors/code/src/lsp_ext.ts +++ b/editors/code/src/lsp_ext.ts @@ -21,6 +21,7 @@ export interface ServerStatusParams { export const serverStatus = new lc.NotificationType<ServerStatusParams>( "experimental/serverStatus" ); +export const openServerLogs = new lc.NotificationType0("rust-analyzer/openServerLogs"); export const reloadWorkspace = new lc.RequestType0<null, void>("rust-analyzer/reloadWorkspace"); |