Interface IClientNotifyParams

Interface describing the notifications that come from the client.

interface IClientNotifyParams {
    "$/setTrace": SetTraceParams;
    initialized: InitializedParams;
    "textDocument/didChange": DidChangeTextDocumentParams;
    "textDocument/didOpen": DidOpenTextDocumentParams;
    "textDocument/didSave": DidSaveTextDocumentParams;
    "workspace/didChangeConfiguration": DidChangeConfigurationParams;
}

Properties

"$/setTrace": SetTraceParams
initialized: InitializedParams
"textDocument/didChange": DidChangeTextDocumentParams
"textDocument/didOpen": DidOpenTextDocumentParams
"textDocument/didSave": DidSaveTextDocumentParams
"workspace/didChangeConfiguration": DidChangeConfigurationParams