UNPKG

@inst/vscode-bin-darwin

Version:

BINARY ONLY - VSCode binary deployment for macOS

176 lines (175 loc) 8.66 kB
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, Tracer } from 'vscode-jsonrpc'; export { ErrorCodes, ResponseError, CancellationToken, CancellationTokenSource, Disposable, Event, Emitter, Trace, SetTraceNotification, LogTraceNotification, Message, NotificationMessage, RequestMessage, 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, Tracer }; export * from 'vscode-languageserver-types'; export * from './protocol'; import * as config from './protocol.configuration.proposed'; import * as folders from './protocol.workspaceFolders.proposed'; import * as color from './protocol.colorProvider.proposed'; export declare namespace Proposed { type ConfigurationClientCapabilities = config.ConfigurationClientCapabilities; type ConfigurationParams = config.ConfigurationParams; type ConfigurationItem = config.ConfigurationItem; namespace ConfigurationRequest { const type: RequestType<config.ConfigurationParams, any[], void, void>; type HandlerSignature = config.ConfigurationRequest.HandlerSignature; type MiddlewareSignature = config.ConfigurationRequest.MiddlewareSignature; } type WorkspaceFoldersInitializeParams = folders.WorkspaceFoldersInitializeParams; type WorkspaceFoldersClientCapabilities = folders.WorkspaceFoldersClientCapabilities; type WorkspaceFolder = folders.WorkspaceFolder; type WorkspaceFoldersChangeEvent = folders.WorkspaceFoldersChangeEvent; type DidChangeWorkspaceFoldersParams = folders.DidChangeWorkspaceFoldersParams; namespace WorkspaceFoldersRequest { const type: RequestType0<folders.WorkspaceFolder[] | null, void, void>; type HandlerSignature = folders.WorkspaceFoldersRequest.HandlerSignature; type MiddlewareSignature = folders.WorkspaceFoldersRequest.MiddlewareSignature; } namespace DidChangeWorkspaceFoldersNotification { const type: NotificationType<folders.DidChangeWorkspaceFoldersParams, void>; type HandlerSignature = folders.DidChangeWorkspaceFoldersNotification.HandlerSignature; type MiddlewareSignature = folders.DidChangeWorkspaceFoldersNotification.MiddlewareSignature; } type ColorProviderOptions = color.ColorProviderOptions; type DocumentColorParams = color.DocumentColorParams; type ColorPresentationParams = color.ColorPresentationParams; type Color = color.Color; type ColorInformation = color.ColorInformation; type ColorPresentation = color.ColorPresentation; type ColorServerCapabilities = color.ServerCapabilities; const DocumentColorRequest: typeof color.DocumentColorRequest; const ColorPresentationRequest: typeof color.ColorPresentationRequest; } export interface ProtocolConnetion { /** * Sends a request and returns a promise resolving to the result of the request. * * @param type The type of request to sent. * @param token An optional cancellation token. * @returns A promise resolving to the request's result. */ sendRequest<R, E, RO>(type: RequestType0<R, E, RO>, token?: CancellationToken): Thenable<R>; /** * Sends a request and returns a promise resolving to the result of the request. * * @param type The type of request to sent. * @param params The request's parameter. * @param token An optional cancellation token. * @returns A promise resolving to the request's result. */ sendRequest<P, R, E, RO>(type: RequestType<P, R, E, RO>, params: P, token?: CancellationToken): Thenable<R>; /** * Sends a request and returns a promise resolving to the result of the request. * * @param method the request's method name. * @param token An optional cancellation token. * @returns A promise resolving to the request's result. */ sendRequest<R>(method: string, token?: CancellationToken): Thenable<R>; /** * Sends a request and returns a promise resolving to the result of the request. * * @param method the request's method name. * @param params The request's parameter. * @param token An optional cancellation token. * @returns A promise resolving to the request's result. */ sendRequest<R>(method: string, param: any, token?: CancellationToken): Thenable<R>; /** * Installs a request handler. * * @param type The request type to install the handler for. * @param handler The actual handler. */ onRequest<R, E, RO>(type: RequestType0<R, E, RO>, handler: RequestHandler0<R, E>): void; /** * Installs a request handler. * * @param type The request type to install the handler for. * @param handler The actual handler. */ onRequest<P, R, E, RO>(type: RequestType<P, R, E, RO>, handler: RequestHandler<P, R, E>): void; /** * Installs a request handler. * * @param methods The method name to install the handler for. * @param handler The actual handler. */ onRequest<R, E>(method: string, handler: GenericRequestHandler<R, E>): void; /** * Sends a notification. * * @param type the notification's type to send. */ sendNotification<RO>(type: NotificationType0<RO>): void; /** * Sends a notification. * * @param type the notification's type to send. * @param params the notification's parameters. */ sendNotification<P, RO>(type: NotificationType<P, RO>, params?: P): void; /** * Sends a notification. * * @param method the notification's method name. */ sendNotification(method: string): void; /** * Sends a notification. * * @param method the notification's method name. * @param params the notification's parameters. */ sendNotification(method: string, params: any): void; /** * Installs a notification handler. * * @param type The notification type to install the handler for. * @param handler The actual handler. */ onNotification<RO>(type: NotificationType0<RO>, handler: NotificationHandler0): void; /** * Installs a notification handler. * * @param type The notification type to install the handler for. * @param handler The actual handler. */ onNotification<P, RO>(type: NotificationType<P, RO>, handler: NotificationHandler<P>): void; /** * Installs a notification handler. * * @param methods The method name to install the handler for. * @param handler The actual handler. */ onNotification(method: string, handler: GenericNotificationHandler): void; /** * Enables tracing mode for the connection. */ trace(value: Trace, tracer: Tracer, sendNotification?: boolean): void; /** * An event emitter firing when an error occurs on the connection. */ onError: Event<[Error, Message | undefined, number | undefined]>; /** * An event emitter firing when the connection got closed. */ onClose: Event<void>; /** * An event emiiter firing when the connection receives a notification that is not * handled. */ onUnhandledNotification: Event<NotificationMessage>; /** * An event emitter firing when the connection got disposed. */ onDispose: Event<void>; /** * Actively disposes the connection. */ dispose(): void; /** * Turns the connection into listening mode */ listen(): void; } export declare function createProtocolConnection(reader: MessageReader, writer: MessageWriter, logger: Logger, strategy?: ConnectionStrategy): ProtocolConnetion;