add hw2
This commit is contained in:
37
node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.d.ts
generated
vendored
Normal file
37
node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.d.ts
generated
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
import { RequestHandler } from 'vscode-jsonrpc';
|
||||
import { Declaration, DeclarationLink, Location, LocationLink } from 'vscode-languageserver-types';
|
||||
import { MessageDirection, ProtocolRequestType } from './messages';
|
||||
import type { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol';
|
||||
/**
|
||||
* @since 3.14.0
|
||||
*/
|
||||
export interface DeclarationClientCapabilities {
|
||||
/**
|
||||
* Whether declaration supports dynamic registration. If this is set to `true`
|
||||
* the client supports the new `DeclarationRegistrationOptions` return value
|
||||
* for the corresponding server capability as well.
|
||||
*/
|
||||
dynamicRegistration?: boolean;
|
||||
/**
|
||||
* The client supports additional metadata in the form of declaration links.
|
||||
*/
|
||||
linkSupport?: boolean;
|
||||
}
|
||||
export interface DeclarationOptions extends WorkDoneProgressOptions {
|
||||
}
|
||||
export interface DeclarationRegistrationOptions extends DeclarationOptions, TextDocumentRegistrationOptions, StaticRegistrationOptions {
|
||||
}
|
||||
export interface DeclarationParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams {
|
||||
}
|
||||
/**
|
||||
* A request to resolve the type definition locations of a symbol at a given text
|
||||
* document position. The request's parameter is of type {@link TextDocumentPositionParams}
|
||||
* the response is of type {@link Declaration} or a typed array of {@link DeclarationLink}
|
||||
* or a Thenable that resolves to such.
|
||||
*/
|
||||
export declare namespace DeclarationRequest {
|
||||
const method: 'textDocument/declaration';
|
||||
const messageDirection: MessageDirection;
|
||||
const type: ProtocolRequestType<DeclarationParams, Declaration | LocationLink[] | null, Location[] | LocationLink[], void, DeclarationRegistrationOptions>;
|
||||
type HandlerSignature = RequestHandler<DeclarationParams, Declaration | DeclarationLink[] | null, void>;
|
||||
}
|
||||
Reference in New Issue
Block a user