@jupyterlab/lsp
Advanced tools
Comparing version 4.0.3 to 4.0.4
{ | ||
"name": "@jupyterlab/lsp", | ||
"version": "4.0.3", | ||
"version": "4.0.4", | ||
"description": "", | ||
@@ -47,8 +47,8 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"dependencies": { | ||
"@jupyterlab/apputils": "^4.1.3", | ||
"@jupyterlab/codeeditor": "^4.0.3", | ||
"@jupyterlab/coreutils": "^6.0.3", | ||
"@jupyterlab/docregistry": "^4.0.3", | ||
"@jupyterlab/services": "^7.0.3", | ||
"@jupyterlab/translation": "^4.0.3", | ||
"@jupyterlab/apputils": "^4.1.4", | ||
"@jupyterlab/codeeditor": "^4.0.4", | ||
"@jupyterlab/coreutils": "^6.0.4", | ||
"@jupyterlab/docregistry": "^4.0.4", | ||
"@jupyterlab/services": "^7.0.4", | ||
"@jupyterlab/translation": "^4.0.4", | ||
"@lumino/coreutils": "^2.1.1", | ||
@@ -63,3 +63,3 @@ "@lumino/disposable": "^2.1.1", | ||
"devDependencies": { | ||
"@jupyterlab/testing": "^4.0.3", | ||
"@jupyterlab/testing": "^4.0.4", | ||
"@types/jest": "^29.2.0", | ||
@@ -66,0 +66,0 @@ "@types/lodash.mergewith": "^4.6.1", |
@@ -83,3 +83,6 @@ // Copyright (c) Jupyter Development Team. | ||
// (other than using 'any' in the IOptions interface) | ||
constructor(public widget: T, protected options: IAdapterOptions) { | ||
constructor( | ||
public widget: T, | ||
protected options: IAdapterOptions | ||
) { | ||
this._connectionManager = options.connectionManager; | ||
@@ -86,0 +89,0 @@ this._isConnected = false; |
@@ -786,4 +786,4 @@ // Copyright (c) Jupyter Development Team. | ||
> = { | ||
readonly // has async request(params) returning a promise with result. | ||
[key in T]: IClientRequestHandler<key>; | ||
// has async request(params) returning a promise with result. | ||
readonly [key in T]: IClientRequestHandler<key>; | ||
}; | ||
@@ -798,4 +798,4 @@ | ||
> = { | ||
readonly // has async request(params) returning a promise with result. | ||
[key in T]: IServerRequestHandler<key>; | ||
// has async request(params) returning a promise with result. | ||
readonly [key in T]: IServerRequestHandler<key>; | ||
}; | ||
@@ -802,0 +802,0 @@ |
Sorry, the diff of this file is not supported yet
458332
11474