vscode-languageserver-protocol 3.17.3-next.2 → 3.17.3-next.3

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.
Files changed (39) hide show
  1. package/lib/browser/main.js +0 -1
  2. package/lib/common/api.js +0 -1
  3. package/lib/common/connection.js +0 -1
  4. package/lib/common/messages.js +0 -1
  5. package/lib/common/protocol.$.js +0 -1
  6. package/lib/common/protocol.callHierarchy.js +0 -1
  7. package/lib/common/protocol.colorProvider.d.ts +6 -6
  8. package/lib/common/protocol.colorProvider.js +4 -5
  9. package/lib/common/protocol.configuration.js +0 -1
  10. package/lib/common/protocol.d.ts +98 -98
  11. package/lib/common/protocol.declaration.d.ts +2 -2
  12. package/lib/common/protocol.declaration.js +2 -3
  13. package/lib/common/protocol.diagnostic.js +1 -2
  14. package/lib/common/protocol.fileOperations.js +0 -1
  15. package/lib/common/protocol.foldingRange.d.ts +3 -3
  16. package/lib/common/protocol.foldingRange.js +2 -3
  17. package/lib/common/protocol.implementation.d.ts +1 -1
  18. package/lib/common/protocol.implementation.js +1 -2
  19. package/lib/common/protocol.inlayHint.d.ts +4 -4
  20. package/lib/common/protocol.inlayHint.js +5 -6
  21. package/lib/common/protocol.inlineValue.d.ts +2 -2
  22. package/lib/common/protocol.inlineValue.js +3 -4
  23. package/lib/common/protocol.js +30 -31
  24. package/lib/common/protocol.linkedEditingRange.js +0 -1
  25. package/lib/common/protocol.moniker.d.ts +2 -2
  26. package/lib/common/protocol.moniker.js +2 -3
  27. package/lib/common/protocol.notebook.js +0 -1
  28. package/lib/common/protocol.progress.js +0 -1
  29. package/lib/common/protocol.selectionRange.d.ts +2 -2
  30. package/lib/common/protocol.selectionRange.js +2 -3
  31. package/lib/common/protocol.semanticTokens.js +1 -2
  32. package/lib/common/protocol.showDocument.js +0 -1
  33. package/lib/common/protocol.typeDefinition.d.ts +1 -1
  34. package/lib/common/protocol.typeDefinition.js +1 -2
  35. package/lib/common/protocol.typeHierarchy.js +0 -1
  36. package/lib/common/protocol.workspaceFolder.js +0 -1
  37. package/lib/common/utils/is.js +0 -1
  38. package/lib/node/main.js +0 -1
  39. package/package.json +8 -6
@@ -1,4 +1,4 @@
1
- import { ProgressToken } from 'vscode-jsonrpc';
1
+ import { ProgressToken, TraceValues } from 'vscode-jsonrpc';
2
2
  import { MessageDirection, ProtocolRequestType, ProtocolRequestType0, ProtocolNotificationType, ProtocolNotificationType0 } from './messages';
3
3
  import { Position, Range, Location, LocationLink, Diagnostic, Command, TextEdit, WorkspaceEdit, DocumentUri, TextDocumentIdentifier, VersionedTextDocumentIdentifier, TextDocumentItem, CompletionItem, CompletionList, Hover, SignatureHelp, Definition, ReferenceContext, DocumentHighlight, SymbolInformation, CodeLens, CodeActionContext, FormattingOptions, DocumentLink, MarkupKind, SymbolKind, CompletionItemKind, CodeAction, CodeActionKind, DocumentSymbol, CompletionItemTag, DiagnosticTag, SymbolTag, uinteger, integer, InsertTextMode, LSPAny, WorkspaceSymbol, URI, WorkspaceFolder } from 'vscode-languageserver-types';
4
4
  import { ImplementationRequest, ImplementationClientCapabilities, ImplementationOptions, ImplementationRegistrationOptions, ImplementationParams } from './protocol.implementation';
@@ -23,8 +23,8 @@ import { DiagnosticClientCapabilities, DiagnosticOptions, DiagnosticRegistration
23
23
  import { NotebookDocumentSyncClientCapabilities, NotebookCellKind, ExecutionSummary, NotebookCell, NotebookDocument, NotebookDocumentIdentifier, VersionedNotebookDocumentIdentifier, NotebookDocumentSyncOptions, NotebookDocumentSyncRegistrationOptions, NotebookDocumentSyncRegistrationType, DidOpenNotebookDocumentParams, DidOpenNotebookDocumentNotification, NotebookCellArrayChange, NotebookDocumentChangeEvent, DidChangeNotebookDocumentParams, DidChangeNotebookDocumentNotification, DidSaveNotebookDocumentParams, DidSaveNotebookDocumentNotification, DidCloseNotebookDocumentParams, DidCloseNotebookDocumentNotification } from './protocol.notebook';
24
24
  /**
25
25
  * A document filter denotes a document by different properties like
26
- * the [language](#TextDocument.languageId), the [scheme](#Uri.scheme) of
27
- * its resource, or a glob-pattern that is applied to the [path](#TextDocument.fileName).
26
+ * the {@link TextDocument.languageId language}, the {@link Uri.scheme scheme} of
27
+ * its resource, or a glob-pattern that is applied to the {@link TextDocument.fileName path}.
28
28
  *
29
29
  * Glob patterns can have the following syntax:
30
30
  * - `*` to match one or more characters in a path segment
@@ -42,28 +42,28 @@ import { NotebookDocumentSyncClientCapabilities, NotebookCellKind, ExecutionSumm
42
42
  export declare type TextDocumentFilter = {
43
43
  /** A language id, like `typescript`. */
44
44
  language: string;
45
- /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
45
+ /** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
46
46
  scheme?: string;
47
47
  /** A glob pattern, like `*.{ts,js}`. */
48
48
  pattern?: string;
49
49
  } | {
50
50
  /** A language id, like `typescript`. */
51
51
  language?: string;
52
- /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
52
+ /** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
53
53
  scheme: string;
54
54
  /** A glob pattern, like `*.{ts,js}`. */
55
55
  pattern?: string;
56
56
  } | {
57
57
  /** A language id, like `typescript`. */
58
58
  language?: string;
59
- /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
59
+ /** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
60
60
  scheme?: string;
61
61
  /** A glob pattern, like `*.{ts,js}`. */
62
62
  pattern: string;
63
63
  };
64
64
  /**
65
65
  * The TextDocumentFilter namespace provides helper functions to work with
66
- * [TextDocumentFilter](#TextDocumentFilter) literals.
66
+ * {@link TextDocumentFilter} literals.
67
67
  *
68
68
  * @since 3.17.0
69
69
  */
@@ -80,28 +80,28 @@ export declare namespace TextDocumentFilter {
80
80
  export declare type NotebookDocumentFilter = {
81
81
  /** The type of the enclosing notebook. */
82
82
  notebookType: string;
83
- /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
83
+ /** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
84
84
  scheme?: string;
85
85
  /** A glob pattern. */
86
86
  pattern?: string;
87
87
  } | {
88
88
  /** The type of the enclosing notebook. */
89
89
  notebookType?: string;
90
- /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`.*/
90
+ /** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`.*/
91
91
  scheme: string;
92
92
  /** A glob pattern. */
93
93
  pattern?: string;
94
94
  } | {
95
95
  /** The type of the enclosing notebook. */
96
96
  notebookType?: string;
97
- /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
97
+ /** A Uri {@link Uri.scheme scheme}, like `file` or `untitled`. */
98
98
  scheme?: string;
99
99
  /** A glob pattern. */
100
100
  pattern: string;
101
101
  };
102
102
  /**
103
103
  * The NotebookDocumentFilter namespace provides helper functions to work with
104
- * [NotebookDocumentFilter](#NotebookDocumentFilter) literals.
104
+ * {@link NotebookDocumentFilter} literals.
105
105
  *
106
106
  * @since 3.17.0
107
107
  */
@@ -132,7 +132,7 @@ export declare type NotebookCellTextDocumentFilter = {
132
132
  };
133
133
  /**
134
134
  * The NotebookCellTextDocumentFilter namespace provides helper functions to work with
135
- * [NotebookCellTextDocumentFilter](#NotebookCellTextDocumentFilter) literals.
135
+ * {@link NotebookCellTextDocumentFilter} literals.
136
136
  *
137
137
  * @since 3.17.0
138
138
  */
@@ -156,7 +156,7 @@ export declare type DocumentFilter = TextDocumentFilter | NotebookCellTextDocume
156
156
  export declare type DocumentSelector = (string | DocumentFilter)[];
157
157
  /**
158
158
  * The DocumentSelector namespace provides helper functions to work with
159
- * [DocumentSelector](#DocumentSelector)s.
159
+ * {@link DocumentSelector}s.
160
160
  */
161
161
  export declare namespace DocumentSelector {
162
162
  function is(value: any[] | undefined | null): value is DocumentSelector;
@@ -739,7 +739,7 @@ export interface StaticRegistrationOptions {
739
739
  }
740
740
  /**
741
741
  * The StaticRegistrationOptions namespace provides helper functions to work with
742
- * [StaticRegistrationOptions](#StaticRegistrationOptions) literals.
742
+ * {@link StaticRegistrationOptions} literals.
743
743
  */
744
744
  export declare namespace StaticRegistrationOptions {
745
745
  function hasId(value: object): value is {
@@ -758,7 +758,7 @@ export interface TextDocumentRegistrationOptions {
758
758
  }
759
759
  /**
760
760
  * The TextDocumentRegistrationOptions namespace provides helper functions to work with
761
- * [TextDocumentRegistrationOptions](#TextDocumentRegistrationOptions) literals.
761
+ * {@link TextDocumentRegistrationOptions} literals.
762
762
  */
763
763
  export declare namespace TextDocumentRegistrationOptions {
764
764
  function is(value: any): value is TextDocumentRegistrationOptions;
@@ -777,7 +777,7 @@ export interface WorkDoneProgressOptions {
777
777
  }
778
778
  /**
779
779
  * The WorkDoneProgressOptions namespace provides helper functions to work with
780
- * [WorkDoneProgressOptions](#WorkDoneProgressOptions) literals.
780
+ * {@link WorkDoneProgressOptions} literals.
781
781
  */
782
782
  export declare namespace WorkDoneProgressOptions {
783
783
  function is(value: any): value is WorkDoneProgressOptions;
@@ -979,8 +979,8 @@ export interface ServerCapabilities<T = LSPAny> {
979
979
  /**
980
980
  * The initialize request is sent from the client to the server.
981
981
  * It is sent once as the request after starting up the server.
982
- * The requests parameter is of type [InitializeParams](#InitializeParams)
983
- * the response if of type [InitializeResult](#InitializeResult) of a Thenable that
982
+ * The requests parameter is of type {@link InitializeParams}
983
+ * the response if of type {@link InitializeResult} of a Thenable that
984
984
  * resolves to such.
985
985
  */
986
986
  export declare namespace InitializeRequest {
@@ -1052,7 +1052,7 @@ export interface _InitializeParams extends WorkDoneProgressParams {
1052
1052
  /**
1053
1053
  * The initial trace setting. If omitted trace is disabled ('off').
1054
1054
  */
1055
- trace?: 'off' | 'messages' | 'compact' | 'verbose';
1055
+ trace?: TraceValues;
1056
1056
  }
1057
1057
  export declare type InitializeParams = _InitializeParams & WorkspaceFoldersInitializeParams;
1058
1058
  /**
@@ -2018,18 +2018,18 @@ export interface CompletionOptions extends WorkDoneProgressOptions {
2018
2018
  };
2019
2019
  }
2020
2020
  /**
2021
- * Registration options for a [CompletionRequest](#CompletionRequest).
2021
+ * Registration options for a {@link CompletionRequest}.
2022
2022
  */
2023
2023
  export interface CompletionRegistrationOptions extends TextDocumentRegistrationOptions, CompletionOptions {
2024
2024
  }
2025
2025
  /**
2026
2026
  * Request to request completion at a given text document position. The request's
2027
- * parameter is of type [TextDocumentPosition](#TextDocumentPosition) the response
2028
- * is of type [CompletionItem[]](#CompletionItem) or [CompletionList](#CompletionList)
2027
+ * parameter is of type {@link TextDocumentPosition} the response
2028
+ * is of type {@link CompletionItem CompletionItem[]} or {@link CompletionList}
2029
2029
  * or a Thenable that resolves to such.
2030
2030
  *
2031
- * The request can delay the computation of the [`detail`](#CompletionItem.detail)
2032
- * and [`documentation`](#CompletionItem.documentation) properties to the `completionItem/resolve`
2031
+ * The request can delay the computation of the {@link CompletionItem.detail `detail`}
2032
+ * and {@link CompletionItem.documentation `documentation`} properties to the `completionItem/resolve`
2033
2033
  * request. However, properties that are needed for the initial sorting and filtering, like `sortText`,
2034
2034
  * `filterText`, `insertText`, and `textEdit`, must not be changed during resolve.
2035
2035
  */
@@ -2040,8 +2040,8 @@ export declare namespace CompletionRequest {
2040
2040
  }
2041
2041
  /**
2042
2042
  * Request to resolve additional information for a given completion item.The request's
2043
- * parameter is of type [CompletionItem](#CompletionItem) the response
2044
- * is of type [CompletionItem](#CompletionItem) or a Thenable that resolves to such.
2043
+ * parameter is of type {@link CompletionItem} the response
2044
+ * is of type {@link CompletionItem} or a Thenable that resolves to such.
2045
2045
  */
2046
2046
  export declare namespace CompletionResolveRequest {
2047
2047
  const method: 'completionItem/resolve';
@@ -2065,19 +2065,19 @@ export interface HoverClientCapabilities {
2065
2065
  export interface HoverOptions extends WorkDoneProgressOptions {
2066
2066
  }
2067
2067
  /**
2068
- * Parameters for a [HoverRequest](#HoverRequest).
2068
+ * Parameters for a {@link HoverRequest}.
2069
2069
  */
2070
2070
  export interface HoverParams extends TextDocumentPositionParams, WorkDoneProgressParams {
2071
2071
  }
2072
2072
  /**
2073
- * Registration options for a [HoverRequest](#HoverRequest).
2073
+ * Registration options for a {@link HoverRequest}.
2074
2074
  */
2075
2075
  export interface HoverRegistrationOptions extends TextDocumentRegistrationOptions, HoverOptions {
2076
2076
  }
2077
2077
  /**
2078
2078
  * Request to request hover information at a given text document position. The request's
2079
- * parameter is of type [TextDocumentPosition](#TextDocumentPosition) the response is of
2080
- * type [Hover](#Hover) or a Thenable that resolves to such.
2079
+ * parameter is of type {@link TextDocumentPosition} the response is of
2080
+ * type {@link Hover} or a Thenable that resolves to such.
2081
2081
  */
2082
2082
  export declare namespace HoverRequest {
2083
2083
  const method: 'textDocument/hover';
@@ -2085,7 +2085,7 @@ export declare namespace HoverRequest {
2085
2085
  const type: ProtocolRequestType<HoverParams, Hover | null, never, void, HoverRegistrationOptions>;
2086
2086
  }
2087
2087
  /**
2088
- * Client Capabilities for a [SignatureHelpRequest](#SignatureHelpRequest).
2088
+ * Client Capabilities for a {@link SignatureHelpRequest}.
2089
2089
  */
2090
2090
  export interface SignatureHelpClientCapabilities {
2091
2091
  /**
@@ -2133,7 +2133,7 @@ export interface SignatureHelpClientCapabilities {
2133
2133
  contextSupport?: boolean;
2134
2134
  }
2135
2135
  /**
2136
- * Server Capabilities for a [SignatureHelpRequest](#SignatureHelpRequest).
2136
+ * Server Capabilities for a {@link SignatureHelpRequest}.
2137
2137
  */
2138
2138
  export interface SignatureHelpOptions extends WorkDoneProgressOptions {
2139
2139
  /**
@@ -2202,7 +2202,7 @@ export interface SignatureHelpContext {
2202
2202
  activeSignatureHelp?: SignatureHelp;
2203
2203
  }
2204
2204
  /**
2205
- * Parameters for a [SignatureHelpRequest](#SignatureHelpRequest).
2205
+ * Parameters for a {@link SignatureHelpRequest}.
2206
2206
  */
2207
2207
  export interface SignatureHelpParams extends TextDocumentPositionParams, WorkDoneProgressParams {
2208
2208
  /**
@@ -2214,7 +2214,7 @@ export interface SignatureHelpParams extends TextDocumentPositionParams, WorkDon
2214
2214
  context?: SignatureHelpContext;
2215
2215
  }
2216
2216
  /**
2217
- * Registration options for a [SignatureHelpRequest](#SignatureHelpRequest).
2217
+ * Registration options for a {@link SignatureHelpRequest}.
2218
2218
  */
2219
2219
  export interface SignatureHelpRegistrationOptions extends TextDocumentRegistrationOptions, SignatureHelpOptions {
2220
2220
  }
@@ -2224,7 +2224,7 @@ export declare namespace SignatureHelpRequest {
2224
2224
  const type: ProtocolRequestType<SignatureHelpParams, SignatureHelp | null, never, void, SignatureHelpRegistrationOptions>;
2225
2225
  }
2226
2226
  /**
2227
- * Client Capabilities for a [DefinitionRequest](#DefinitionRequest).
2227
+ * Client Capabilities for a {@link DefinitionRequest}.
2228
2228
  */
2229
2229
  export interface DefinitionClientCapabilities {
2230
2230
  /**
@@ -2239,25 +2239,25 @@ export interface DefinitionClientCapabilities {
2239
2239
  linkSupport?: boolean;
2240
2240
  }
2241
2241
  /**
2242
- * Server Capabilities for a [DefinitionRequest](#DefinitionRequest).
2242
+ * Server Capabilities for a {@link DefinitionRequest}.
2243
2243
  */
2244
2244
  export interface DefinitionOptions extends WorkDoneProgressOptions {
2245
2245
  }
2246
2246
  /**
2247
- * Parameters for a [DefinitionRequest](#DefinitionRequest).
2247
+ * Parameters for a {@link DefinitionRequest}.
2248
2248
  */
2249
2249
  export interface DefinitionParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams {
2250
2250
  }
2251
2251
  /**
2252
- * Registration options for a [DefinitionRequest](#DefinitionRequest).
2252
+ * Registration options for a {@link DefinitionRequest}.
2253
2253
  */
2254
2254
  export interface DefinitionRegistrationOptions extends TextDocumentRegistrationOptions, DefinitionOptions {
2255
2255
  }
2256
2256
  /**
2257
2257
  * A request to resolve the definition location of a symbol at a given text
2258
2258
  * document position. The request's parameter is of type [TextDocumentPosition]
2259
- * (#TextDocumentPosition) the response is of either type [Definition](#Definition)
2260
- * or a typed array of [DefinitionLink](#DefinitionLink) or a Thenable that resolves
2259
+ * (#TextDocumentPosition) the response is of either type {@link Definition}
2260
+ * or a typed array of {@link DefinitionLink} or a Thenable that resolves
2261
2261
  * to such.
2262
2262
  */
2263
2263
  export declare namespace DefinitionRequest {
@@ -2266,7 +2266,7 @@ export declare namespace DefinitionRequest {
2266
2266
  const type: ProtocolRequestType<DefinitionParams, Definition | LocationLink[] | null, Location[] | LocationLink[], void, DefinitionRegistrationOptions>;
2267
2267
  }
2268
2268
  /**
2269
- * Client Capabilities for a [ReferencesRequest](#ReferencesRequest).
2269
+ * Client Capabilities for a {@link ReferencesRequest}.
2270
2270
  */
2271
2271
  export interface ReferenceClientCapabilities {
2272
2272
  /**
@@ -2275,7 +2275,7 @@ export interface ReferenceClientCapabilities {
2275
2275
  dynamicRegistration?: boolean;
2276
2276
  }
2277
2277
  /**
2278
- * Parameters for a [ReferencesRequest](#ReferencesRequest).
2278
+ * Parameters for a {@link ReferencesRequest}.
2279
2279
  */
2280
2280
  export interface ReferenceParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams {
2281
2281
  context: ReferenceContext;
@@ -2286,15 +2286,15 @@ export interface ReferenceParams extends TextDocumentPositionParams, WorkDonePro
2286
2286
  export interface ReferenceOptions extends WorkDoneProgressOptions {
2287
2287
  }
2288
2288
  /**
2289
- * Registration options for a [ReferencesRequest](#ReferencesRequest).
2289
+ * Registration options for a {@link ReferencesRequest}.
2290
2290
  */
2291
2291
  export interface ReferenceRegistrationOptions extends TextDocumentRegistrationOptions, ReferenceOptions {
2292
2292
  }
2293
2293
  /**
2294
2294
  * A request to resolve project-wide references for the symbol denoted
2295
2295
  * by the given text document position. The request's parameter is of
2296
- * type [ReferenceParams](#ReferenceParams) the response is of type
2297
- * [Location[]](#Location) or a Thenable that resolves to such.
2296
+ * type {@link ReferenceParams} the response is of type
2297
+ * {@link Location Location[]} or a Thenable that resolves to such.
2298
2298
  */
2299
2299
  export declare namespace ReferencesRequest {
2300
2300
  const method: 'textDocument/references';
@@ -2302,7 +2302,7 @@ export declare namespace ReferencesRequest {
2302
2302
  const type: ProtocolRequestType<ReferenceParams, Location[] | null, Location[], void, ReferenceRegistrationOptions>;
2303
2303
  }
2304
2304
  /**
2305
- * Client Capabilities for a [DocumentHighlightRequest](#DocumentHighlightRequest).
2305
+ * Client Capabilities for a {@link DocumentHighlightRequest}.
2306
2306
  */
2307
2307
  export interface DocumentHighlightClientCapabilities {
2308
2308
  /**
@@ -2311,22 +2311,22 @@ export interface DocumentHighlightClientCapabilities {
2311
2311
  dynamicRegistration?: boolean;
2312
2312
  }
2313
2313
  /**
2314
- * Parameters for a [DocumentHighlightRequest](#DocumentHighlightRequest).
2314
+ * Parameters for a {@link DocumentHighlightRequest}.
2315
2315
  */
2316
2316
  export interface DocumentHighlightParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams {
2317
2317
  }
2318
2318
  /**
2319
- * Provider options for a [DocumentHighlightRequest](#DocumentHighlightRequest).
2319
+ * Provider options for a {@link DocumentHighlightRequest}.
2320
2320
  */
2321
2321
  export interface DocumentHighlightOptions extends WorkDoneProgressOptions {
2322
2322
  }
2323
2323
  /**
2324
- * Registration options for a [DocumentHighlightRequest](#DocumentHighlightRequest).
2324
+ * Registration options for a {@link DocumentHighlightRequest}.
2325
2325
  */
2326
2326
  export interface DocumentHighlightRegistrationOptions extends TextDocumentRegistrationOptions, DocumentHighlightOptions {
2327
2327
  }
2328
2328
  /**
2329
- * Request to resolve a [DocumentHighlight](#DocumentHighlight) for a given
2329
+ * Request to resolve a {@link DocumentHighlight} for a given
2330
2330
  * text document position. The request's parameter is of type [TextDocumentPosition]
2331
2331
  * (#TextDocumentPosition) the request response is of type [DocumentHighlight[]]
2332
2332
  * (#DocumentHighlight) or a Thenable that resolves to such.
@@ -2337,7 +2337,7 @@ export declare namespace DocumentHighlightRequest {
2337
2337
  const type: ProtocolRequestType<DocumentHighlightParams, DocumentHighlight[] | null, DocumentHighlight[], void, DocumentHighlightRegistrationOptions>;
2338
2338
  }
2339
2339
  /**
2340
- * Client Capabilities for a [DocumentSymbolRequest](#DocumentSymbolRequest).
2340
+ * Client Capabilities for a {@link DocumentSymbolRequest}.
2341
2341
  */
2342
2342
  export interface DocumentSymbolClientCapabilities {
2343
2343
  /**
@@ -2387,7 +2387,7 @@ export interface DocumentSymbolClientCapabilities {
2387
2387
  labelSupport?: boolean;
2388
2388
  }
2389
2389
  /**
2390
- * Parameters for a [DocumentSymbolRequest](#DocumentSymbolRequest).
2390
+ * Parameters for a {@link DocumentSymbolRequest}.
2391
2391
  */
2392
2392
  export interface DocumentSymbolParams extends WorkDoneProgressParams, PartialResultParams {
2393
2393
  /**
@@ -2396,7 +2396,7 @@ export interface DocumentSymbolParams extends WorkDoneProgressParams, PartialRes
2396
2396
  textDocument: TextDocumentIdentifier;
2397
2397
  }
2398
2398
  /**
2399
- * Provider options for a [DocumentSymbolRequest](#DocumentSymbolRequest).
2399
+ * Provider options for a {@link DocumentSymbolRequest}.
2400
2400
  */
2401
2401
  export interface DocumentSymbolOptions extends WorkDoneProgressOptions {
2402
2402
  /**
@@ -2408,14 +2408,14 @@ export interface DocumentSymbolOptions extends WorkDoneProgressOptions {
2408
2408
  label?: string;
2409
2409
  }
2410
2410
  /**
2411
- * Registration options for a [DocumentSymbolRequest](#DocumentSymbolRequest).
2411
+ * Registration options for a {@link DocumentSymbolRequest}.
2412
2412
  */
2413
2413
  export interface DocumentSymbolRegistrationOptions extends TextDocumentRegistrationOptions, DocumentSymbolOptions {
2414
2414
  }
2415
2415
  /**
2416
2416
  * A request to list all symbols found in a given text document. The request's
2417
- * parameter is of type [TextDocumentIdentifier](#TextDocumentIdentifier) the
2418
- * response is of type [SymbolInformation[]](#SymbolInformation) or a Thenable
2417
+ * parameter is of type {@link TextDocumentIdentifier} the
2418
+ * response is of type {@link SymbolInformation SymbolInformation[]} or a Thenable
2419
2419
  * that resolves to such.
2420
2420
  */
2421
2421
  export declare namespace DocumentSymbolRequest {
@@ -2424,7 +2424,7 @@ export declare namespace DocumentSymbolRequest {
2424
2424
  const type: ProtocolRequestType<DocumentSymbolParams, DocumentSymbol[] | SymbolInformation[] | null, DocumentSymbol[] | SymbolInformation[], void, DocumentSymbolRegistrationOptions>;
2425
2425
  }
2426
2426
  /**
2427
- * The Client Capabilities of a [CodeActionRequest](#CodeActionRequest).
2427
+ * The Client Capabilities of a {@link CodeActionRequest}.
2428
2428
  */
2429
2429
  export interface CodeActionClientCapabilities {
2430
2430
  /**
@@ -2497,7 +2497,7 @@ export interface CodeActionClientCapabilities {
2497
2497
  honorsChangeAnnotations?: boolean;
2498
2498
  }
2499
2499
  /**
2500
- * The parameters of a [CodeActionRequest](#CodeActionRequest).
2500
+ * The parameters of a {@link CodeActionRequest}.
2501
2501
  */
2502
2502
  export interface CodeActionParams extends WorkDoneProgressParams, PartialResultParams {
2503
2503
  /**
@@ -2514,7 +2514,7 @@ export interface CodeActionParams extends WorkDoneProgressParams, PartialResultP
2514
2514
  context: CodeActionContext;
2515
2515
  }
2516
2516
  /**
2517
- * Provider options for a [CodeActionRequest](#CodeActionRequest).
2517
+ * Provider options for a {@link CodeActionRequest}.
2518
2518
  */
2519
2519
  export interface CodeActionOptions extends WorkDoneProgressOptions {
2520
2520
  /**
@@ -2533,7 +2533,7 @@ export interface CodeActionOptions extends WorkDoneProgressOptions {
2533
2533
  resolveProvider?: boolean;
2534
2534
  }
2535
2535
  /**
2536
- * Registration options for a [CodeActionRequest](#CodeActionRequest).
2536
+ * Registration options for a {@link CodeActionRequest}.
2537
2537
  */
2538
2538
  export interface CodeActionRegistrationOptions extends TextDocumentRegistrationOptions, CodeActionOptions {
2539
2539
  }
@@ -2547,8 +2547,8 @@ export declare namespace CodeActionRequest {
2547
2547
  }
2548
2548
  /**
2549
2549
  * Request to resolve additional information for a given code action.The request's
2550
- * parameter is of type [CodeAction](#CodeAction) the response
2551
- * is of type [CodeAction](#CodeAction) or a Thenable that resolves to such.
2550
+ * parameter is of type {@link CodeAction} the response
2551
+ * is of type {@link CodeAction} or a Thenable that resolves to such.
2552
2552
  */
2553
2553
  export declare namespace CodeActionResolveRequest {
2554
2554
  const method: 'codeAction/resolve';
@@ -2556,7 +2556,7 @@ export declare namespace CodeActionResolveRequest {
2556
2556
  const type: ProtocolRequestType<CodeAction, CodeAction, never, void, void>;
2557
2557
  }
2558
2558
  /**
2559
- * Client capabilities for a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest).
2559
+ * Client capabilities for a {@link WorkspaceSymbolRequest}.
2560
2560
  */
2561
2561
  export interface WorkspaceSymbolClientCapabilities {
2562
2562
  /**
@@ -2607,7 +2607,7 @@ export interface WorkspaceSymbolClientCapabilities {
2607
2607
  };
2608
2608
  }
2609
2609
  /**
2610
- * The parameters of a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest).
2610
+ * The parameters of a {@link WorkspaceSymbolRequest}.
2611
2611
  */
2612
2612
  export interface WorkspaceSymbolParams extends WorkDoneProgressParams, PartialResultParams {
2613
2613
  /**
@@ -2617,7 +2617,7 @@ export interface WorkspaceSymbolParams extends WorkDoneProgressParams, PartialRe
2617
2617
  query: string;
2618
2618
  }
2619
2619
  /**
2620
- * Server capabilities for a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest).
2620
+ * Server capabilities for a {@link WorkspaceSymbolRequest}.
2621
2621
  */
2622
2622
  export interface WorkspaceSymbolOptions extends WorkDoneProgressOptions {
2623
2623
  /**
@@ -2629,14 +2629,14 @@ export interface WorkspaceSymbolOptions extends WorkDoneProgressOptions {
2629
2629
  resolveProvider?: boolean;
2630
2630
  }
2631
2631
  /**
2632
- * Registration options for a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest).
2632
+ * Registration options for a {@link WorkspaceSymbolRequest}.
2633
2633
  */
2634
2634
  export interface WorkspaceSymbolRegistrationOptions extends WorkspaceSymbolOptions {
2635
2635
  }
2636
2636
  /**
2637
2637
  * A request to list project-wide symbols matching the query string given
2638
- * by the [WorkspaceSymbolParams](#WorkspaceSymbolParams). The response is
2639
- * of type [SymbolInformation[]](#SymbolInformation) or a Thenable that
2638
+ * by the {@link WorkspaceSymbolParams}. The response is
2639
+ * of type {@link SymbolInformation SymbolInformation[]} or a Thenable that
2640
2640
  * resolves to such.
2641
2641
  *
2642
2642
  * @since 3.17.0 - support for WorkspaceSymbol in the returned data. Clients
@@ -2661,7 +2661,7 @@ export declare namespace WorkspaceSymbolResolveRequest {
2661
2661
  const type: ProtocolRequestType<WorkspaceSymbol, WorkspaceSymbol, never, void, void>;
2662
2662
  }
2663
2663
  /**
2664
- * The client capabilities of a [CodeLensRequest](#CodeLensRequest).
2664
+ * The client capabilities of a {@link CodeLensRequest}.
2665
2665
  */
2666
2666
  export interface CodeLensClientCapabilities {
2667
2667
  /**
@@ -2685,7 +2685,7 @@ export interface CodeLensWorkspaceClientCapabilities {
2685
2685
  refreshSupport?: boolean;
2686
2686
  }
2687
2687
  /**
2688
- * The parameters of a [CodeLensRequest](#CodeLensRequest).
2688
+ * The parameters of a {@link CodeLensRequest}.
2689
2689
  */
2690
2690
  export interface CodeLensParams extends WorkDoneProgressParams, PartialResultParams {
2691
2691
  /**
@@ -2694,7 +2694,7 @@ export interface CodeLensParams extends WorkDoneProgressParams, PartialResultPar
2694
2694
  textDocument: TextDocumentIdentifier;
2695
2695
  }
2696
2696
  /**
2697
- * Code Lens provider options of a [CodeLensRequest](#CodeLensRequest).
2697
+ * Code Lens provider options of a {@link CodeLensRequest}.
2698
2698
  */
2699
2699
  export interface CodeLensOptions extends WorkDoneProgressOptions {
2700
2700
  /**
@@ -2703,7 +2703,7 @@ export interface CodeLensOptions extends WorkDoneProgressOptions {
2703
2703
  resolveProvider?: boolean;
2704
2704
  }
2705
2705
  /**
2706
- * Registration options for a [CodeLensRequest](#CodeLensRequest).
2706
+ * Registration options for a {@link CodeLensRequest}.
2707
2707
  */
2708
2708
  export interface CodeLensRegistrationOptions extends TextDocumentRegistrationOptions, CodeLensOptions {
2709
2709
  }
@@ -2734,7 +2734,7 @@ export declare namespace CodeLensRefreshRequest {
2734
2734
  const type: ProtocolRequestType0<void, void, void, void>;
2735
2735
  }
2736
2736
  /**
2737
- * The client capabilities of a [DocumentLinkRequest](#DocumentLinkRequest).
2737
+ * The client capabilities of a {@link DocumentLinkRequest}.
2738
2738
  */
2739
2739
  export interface DocumentLinkClientCapabilities {
2740
2740
  /**
@@ -2749,7 +2749,7 @@ export interface DocumentLinkClientCapabilities {
2749
2749
  tooltipSupport?: boolean;
2750
2750
  }
2751
2751
  /**
2752
- * The parameters of a [DocumentLinkRequest](#DocumentLinkRequest).
2752
+ * The parameters of a {@link DocumentLinkRequest}.
2753
2753
  */
2754
2754
  export interface DocumentLinkParams extends WorkDoneProgressParams, PartialResultParams {
2755
2755
  /**
@@ -2758,7 +2758,7 @@ export interface DocumentLinkParams extends WorkDoneProgressParams, PartialResul
2758
2758
  textDocument: TextDocumentIdentifier;
2759
2759
  }
2760
2760
  /**
2761
- * Provider options for a [DocumentLinkRequest](#DocumentLinkRequest).
2761
+ * Provider options for a {@link DocumentLinkRequest}.
2762
2762
  */
2763
2763
  export interface DocumentLinkOptions extends WorkDoneProgressOptions {
2764
2764
  /**
@@ -2767,7 +2767,7 @@ export interface DocumentLinkOptions extends WorkDoneProgressOptions {
2767
2767
  resolveProvider?: boolean;
2768
2768
  }
2769
2769
  /**
2770
- * Registration options for a [DocumentLinkRequest](#DocumentLinkRequest).
2770
+ * Registration options for a {@link DocumentLinkRequest}.
2771
2771
  */
2772
2772
  export interface DocumentLinkRegistrationOptions extends TextDocumentRegistrationOptions, DocumentLinkOptions {
2773
2773
  }
@@ -2781,8 +2781,8 @@ export declare namespace DocumentLinkRequest {
2781
2781
  }
2782
2782
  /**
2783
2783
  * Request to resolve additional information for a given document link. The request's
2784
- * parameter is of type [DocumentLink](#DocumentLink) the response
2785
- * is of type [DocumentLink](#DocumentLink) or a Thenable that resolves to such.
2784
+ * parameter is of type {@link DocumentLink} the response
2785
+ * is of type {@link DocumentLink} or a Thenable that resolves to such.
2786
2786
  */
2787
2787
  export declare namespace DocumentLinkResolveRequest {
2788
2788
  const method: 'documentLink/resolve';
@@ -2790,7 +2790,7 @@ export declare namespace DocumentLinkResolveRequest {
2790
2790
  const type: ProtocolRequestType<DocumentLink, DocumentLink, never, void, void>;
2791
2791
  }
2792
2792
  /**
2793
- * Client capabilities of a [DocumentFormattingRequest](#DocumentFormattingRequest).
2793
+ * Client capabilities of a {@link DocumentFormattingRequest}.
2794
2794
  */
2795
2795
  export interface DocumentFormattingClientCapabilities {
2796
2796
  /**
@@ -2799,7 +2799,7 @@ export interface DocumentFormattingClientCapabilities {
2799
2799
  dynamicRegistration?: boolean;
2800
2800
  }
2801
2801
  /**
2802
- * The parameters of a [DocumentFormattingRequest](#DocumentFormattingRequest).
2802
+ * The parameters of a {@link DocumentFormattingRequest}.
2803
2803
  */
2804
2804
  export interface DocumentFormattingParams extends WorkDoneProgressParams {
2805
2805
  /**
@@ -2812,12 +2812,12 @@ export interface DocumentFormattingParams extends WorkDoneProgressParams {
2812
2812
  options: FormattingOptions;
2813
2813
  }
2814
2814
  /**
2815
- * Provider options for a [DocumentFormattingRequest](#DocumentFormattingRequest).
2815
+ * Provider options for a {@link DocumentFormattingRequest}.
2816
2816
  */
2817
2817
  export interface DocumentFormattingOptions extends WorkDoneProgressOptions {
2818
2818
  }
2819
2819
  /**
2820
- * Registration options for a [DocumentFormattingRequest](#DocumentFormattingRequest).
2820
+ * Registration options for a {@link DocumentFormattingRequest}.
2821
2821
  */
2822
2822
  export interface DocumentFormattingRegistrationOptions extends TextDocumentRegistrationOptions, DocumentFormattingOptions {
2823
2823
  }
@@ -2830,7 +2830,7 @@ export declare namespace DocumentFormattingRequest {
2830
2830
  const type: ProtocolRequestType<DocumentFormattingParams, TextEdit[] | null, never, void, DocumentFormattingRegistrationOptions>;
2831
2831
  }
2832
2832
  /**
2833
- * Client capabilities of a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest).
2833
+ * Client capabilities of a {@link DocumentRangeFormattingRequest}.
2834
2834
  */
2835
2835
  export interface DocumentRangeFormattingClientCapabilities {
2836
2836
  /**
@@ -2839,7 +2839,7 @@ export interface DocumentRangeFormattingClientCapabilities {
2839
2839
  dynamicRegistration?: boolean;
2840
2840
  }
2841
2841
  /**
2842
- * The parameters of a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest).
2842
+ * The parameters of a {@link DocumentRangeFormattingRequest}.
2843
2843
  */
2844
2844
  export interface DocumentRangeFormattingParams extends WorkDoneProgressParams {
2845
2845
  /**
@@ -2856,12 +2856,12 @@ export interface DocumentRangeFormattingParams extends WorkDoneProgressParams {
2856
2856
  options: FormattingOptions;
2857
2857
  }
2858
2858
  /**
2859
- * Provider options for a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest).
2859
+ * Provider options for a {@link DocumentRangeFormattingRequest}.
2860
2860
  */
2861
2861
  export interface DocumentRangeFormattingOptions extends WorkDoneProgressOptions {
2862
2862
  }
2863
2863
  /**
2864
- * Registration options for a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest).
2864
+ * Registration options for a {@link DocumentRangeFormattingRequest}.
2865
2865
  */
2866
2866
  export interface DocumentRangeFormattingRegistrationOptions extends TextDocumentRegistrationOptions, DocumentRangeFormattingOptions {
2867
2867
  }
@@ -2874,7 +2874,7 @@ export declare namespace DocumentRangeFormattingRequest {
2874
2874
  const type: ProtocolRequestType<DocumentRangeFormattingParams, TextEdit[] | null, never, void, DocumentRangeFormattingRegistrationOptions>;
2875
2875
  }
2876
2876
  /**
2877
- * Client capabilities of a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest).
2877
+ * Client capabilities of a {@link DocumentOnTypeFormattingRequest}.
2878
2878
  */
2879
2879
  export interface DocumentOnTypeFormattingClientCapabilities {
2880
2880
  /**
@@ -2883,7 +2883,7 @@ export interface DocumentOnTypeFormattingClientCapabilities {
2883
2883
  dynamicRegistration?: boolean;
2884
2884
  }
2885
2885
  /**
2886
- * The parameters of a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest).
2886
+ * The parameters of a {@link DocumentOnTypeFormattingRequest}.
2887
2887
  */
2888
2888
  export interface DocumentOnTypeFormattingParams {
2889
2889
  /**
@@ -2909,7 +2909,7 @@ export interface DocumentOnTypeFormattingParams {
2909
2909
  options: FormattingOptions;
2910
2910
  }
2911
2911
  /**
2912
- * Provider options for a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest).
2912
+ * Provider options for a {@link DocumentOnTypeFormattingRequest}.
2913
2913
  */
2914
2914
  export interface DocumentOnTypeFormattingOptions {
2915
2915
  /**
@@ -2922,7 +2922,7 @@ export interface DocumentOnTypeFormattingOptions {
2922
2922
  moreTriggerCharacter?: string[];
2923
2923
  }
2924
2924
  /**
2925
- * Registration options for a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest).
2925
+ * Registration options for a {@link DocumentOnTypeFormattingRequest}.
2926
2926
  */
2927
2927
  export interface DocumentOnTypeFormattingRegistrationOptions extends TextDocumentRegistrationOptions, DocumentOnTypeFormattingOptions {
2928
2928
  }
@@ -2975,7 +2975,7 @@ export interface RenameClientCapabilities {
2975
2975
  honorsChangeAnnotations?: boolean;
2976
2976
  }
2977
2977
  /**
2978
- * The parameters of a [RenameRequest](#RenameRequest).
2978
+ * The parameters of a {@link RenameRequest}.
2979
2979
  */
2980
2980
  export interface RenameParams extends WorkDoneProgressParams {
2981
2981
  /**
@@ -2988,13 +2988,13 @@ export interface RenameParams extends WorkDoneProgressParams {
2988
2988
  position: Position;
2989
2989
  /**
2990
2990
  * The new name of the symbol. If the given name is not valid the
2991
- * request must return a [ResponseError](#ResponseError) with an
2991
+ * request must return a {@link ResponseError} with an
2992
2992
  * appropriate message set.
2993
2993
  */
2994
2994
  newName: string;
2995
2995
  }
2996
2996
  /**
2997
- * Provider options for a [RenameRequest](#RenameRequest).
2997
+ * Provider options for a {@link RenameRequest}.
2998
2998
  */
2999
2999
  export interface RenameOptions extends WorkDoneProgressOptions {
3000
3000
  /**
@@ -3005,7 +3005,7 @@ export interface RenameOptions extends WorkDoneProgressOptions {
3005
3005
  prepareProvider?: boolean;
3006
3006
  }
3007
3007
  /**
3008
- * Registration options for a [RenameRequest](#RenameRequest).
3008
+ * Registration options for a {@link RenameRequest}.
3009
3009
  */
3010
3010
  export interface RenameRegistrationOptions extends TextDocumentRegistrationOptions, RenameOptions {
3011
3011
  }
@@ -3036,7 +3036,7 @@ export declare namespace PrepareRenameRequest {
3036
3036
  const type: ProtocolRequestType<PrepareRenameParams, PrepareRenameResult | null, never, void, void>;
3037
3037
  }
3038
3038
  /**
3039
- * The client capabilities of a [ExecuteCommandRequest](#ExecuteCommandRequest).
3039
+ * The client capabilities of a {@link ExecuteCommandRequest}.
3040
3040
  */
3041
3041
  export interface ExecuteCommandClientCapabilities {
3042
3042
  /**
@@ -3045,7 +3045,7 @@ export interface ExecuteCommandClientCapabilities {
3045
3045
  dynamicRegistration?: boolean;
3046
3046
  }
3047
3047
  /**
3048
- * The parameters of a [ExecuteCommandRequest](#ExecuteCommandRequest).
3048
+ * The parameters of a {@link ExecuteCommandRequest}.
3049
3049
  */
3050
3050
  export interface ExecuteCommandParams extends WorkDoneProgressParams {
3051
3051
  /**
@@ -3058,7 +3058,7 @@ export interface ExecuteCommandParams extends WorkDoneProgressParams {
3058
3058
  arguments?: LSPAny[];
3059
3059
  }
3060
3060
  /**
3061
- * The server capabilities of a [ExecuteCommandRequest](#ExecuteCommandRequest).
3061
+ * The server capabilities of a {@link ExecuteCommandRequest}.
3062
3062
  */
3063
3063
  export interface ExecuteCommandOptions extends WorkDoneProgressOptions {
3064
3064
  /**
@@ -3067,7 +3067,7 @@ export interface ExecuteCommandOptions extends WorkDoneProgressOptions {
3067
3067
  commands: string[];
3068
3068
  }
3069
3069
  /**
3070
- * Registration options for a [ExecuteCommandRequest](#ExecuteCommandRequest).
3070
+ * Registration options for a {@link ExecuteCommandRequest}.
3071
3071
  */
3072
3072
  export interface ExecuteCommandRegistrationOptions extends ExecuteCommandOptions {
3073
3073
  }