vscode-languageserver-protocol
Advanced tools
Comparing version 3.6.0-next.3 to 3.6.0-next.4
@@ -44,2 +44,3 @@ import { ErrorCodes, ResponseError, CancellationToken, CancellationTokenSource, Disposable, Event, Emitter, Trace, SetTraceNotification, LogTraceNotification, Message, NotificationMessage, RequestMessage, MessageType as RPCMessageType, RequestType, RequestType0, RequestHandler, RequestHandler0, GenericRequestHandler, StarRequestHandler, NotificationType, NotificationType0, NotificationHandler, NotificationHandler0, GenericNotificationHandler, StarNotificationHandler, MessageReader, MessageWriter, Logger, ConnectionStrategy, StreamMessageReader, StreamMessageWriter, IPCMessageReader, IPCMessageWriter, createClientPipeTransport, createServerPipeTransport, generateRandomPipeName, DataCallback, createClientSocketTransport, createServerSocketTransport, Tracer } from 'vscode-jsonrpc'; | ||
type ColorServerCapabilities = color.ServerCapabilities; | ||
type ColorClientCapabilities = color.ClientCapabilities; | ||
const DocumentColorRequest: typeof color.DocumentColorRequest; | ||
@@ -46,0 +47,0 @@ const ColorPresentationRequest: typeof color.ColorPresentationRequest; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
import { RequestType } from 'vscode-jsonrpc'; | ||
import { TextDocumentRegistrationOptions } from './protocol'; | ||
import { TextDocumentRegistrationOptions, StaticRegistrationOptions } from './protocol'; | ||
import { TextDocumentIdentifier, Range, TextEdit } from 'vscode-languageserver-types'; | ||
export interface ClientCapabilities { | ||
/** | ||
* The text document client capabilities | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to the colorProvider | ||
*/ | ||
colorProvider?: { | ||
/** | ||
* Whether implementation supports dynamic registration. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
}; | ||
}; | ||
} | ||
export interface ColorProviderOptions { | ||
@@ -10,3 +26,3 @@ } | ||
*/ | ||
colorProvider?: ColorProviderOptions; | ||
colorProvider?: ColorProviderOptions | (TextDocumentRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
@@ -13,0 +29,0 @@ /** |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { RequestType, RequestHandler, HandlerResult, CancellationToken } from 'vscode-jsonrpc'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { RequestType, RequestType0, NotificationType, NotificationType0 } from 'vscode-jsonrpc'; |
@@ -0,0 +0,0 @@ import { RequestType, RequestHandler } from 'vscode-jsonrpc'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { RequestType, RequestHandler } from 'vscode-jsonrpc'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { RequestType0, RequestHandler0, NotificationType, NotificationHandler, HandlerResult, CancellationToken } from 'vscode-jsonrpc'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ export declare function boolean(value: any): value is boolean; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
{ | ||
"name": "vscode-languageserver-protocol", | ||
"description": "VSCode Language Server Protocol implementation", | ||
"version": "3.6.0-next.3", | ||
"version": "3.6.0-next.4", | ||
"author": "Microsoft Corporation", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2687
106105