diff --git a/src/typescript-service.ts b/src/typescript-service.ts index 32ace19e8..6f288baca 100644 --- a/src/typescript-service.ts +++ b/src/typescript-service.ts @@ -1324,6 +1324,16 @@ export class TypeScriptService { .startWith({ op: 'add', path: '', value: { changes: {} } as WorkspaceEdit } as Operation) } + /** + * The initialized notification is sent from the client to the server after the client received + * the result of the initialize request but before the client is sending any other request or + * notification to the server. The server can use the initialized notification for example to + * dynamically register capabilities. + */ + public async initialized(): Promise { + // nop + } + /** * The document open notification is sent from the client to the server to signal newly opened * text documents. The document's truth is now managed by the client and the server must not try