vscode-languageserver-protocol 3.17.2-next.5 → 3.17.2-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/common/protocol.d.ts +2 -2
- package/package.json +1 -1
package/lib/common/protocol.d.ts
CHANGED
|
@@ -720,7 +720,7 @@ export interface ClientCapabilities {
|
|
|
720
720
|
/**
|
|
721
721
|
* Experimental client capabilities.
|
|
722
722
|
*/
|
|
723
|
-
experimental?:
|
|
723
|
+
experimental?: LSPAny;
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
726
726
|
* Static registration options to be returned in the initialize
|
|
@@ -785,7 +785,7 @@ export declare namespace WorkDoneProgressOptions {
|
|
|
785
785
|
* Defines the capabilities provided by a language
|
|
786
786
|
* server.
|
|
787
787
|
*/
|
|
788
|
-
export interface ServerCapabilities<T =
|
|
788
|
+
export interface ServerCapabilities<T = LSPAny> {
|
|
789
789
|
/**
|
|
790
790
|
* The position encoding the server picked from the encodings offered
|
|
791
791
|
* by the client via the client capability `general.positionEncodings`.
|
package/package.json
CHANGED