forked from microsoft/vscode-languageserver-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.ts
More file actions
106 lines (91 loc) · 4.72 KB
/
api.ts
File metadata and controls
106 lines (91 loc) · 4.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* --------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
import type { integer } from 'vscode-languageserver-types';
export * from 'vscode-jsonrpc';
export * from 'vscode-languageserver-types';
export * from './messages';
export * from './protocol';
export { ProtocolConnection, createProtocolConnection } from './connection';
export namespace LSPErrorCodes {
/**
* This is the start range of LSP reserved error codes.
* It doesn't denote a real error code.
*
* @since 3.16.0
*/
export const lspReservedErrorRangeStart: integer = -32899;
/**
* The server cancelled the request. This error code should
* only be used for requests that explicitly support being
* server cancellable.
*
* @since 3.17.0
*/
export const ServerCancelled: integer = -32802;
/**
* The server detected that the content of a document got
* modified outside normal conditions. A server should
* NOT send this error code if it detects a content change
* in it unprocessed messages. The result even computed
* on an older state might still be useful for the client.
*
* If a client decides that a result is not of any use anymore
* the client should cancel the request.
*/
export const ContentModified: integer = -32801;
/**
* The client has canceled a request and a server as detected
* the cancel.
*/
export const RequestCancelled: integer = -32800;
/**
* This is the end range of LSP reserved error codes.
* It doesn't denote a real error code.
*
* @since 3.16.0
*/
export const lspReservedErrorRangeEnd: integer = -32800;
}
import * as diag from './proposed.diagnostic';
export namespace Proposed {
export type DiagnosticClientCapabilities = diag.DiagnosticClientCapabilities;
export type $DiagnosticClientCapabilities = diag.$DiagnosticClientCapabilities;
export type DiagnosticOptions = diag.DiagnosticOptions;
export type DiagnosticRegistrationOptions = diag.DiagnosticRegistrationOptions;
export type $DiagnosticServerCapabilities = diag.$DiagnosticServerCapabilities;
export type DocumentDiagnosticParams = diag.DocumentDiagnosticParams;
export type DiagnosticServerCancellationData = diag.DiagnosticServerCancellationData;
export const DiagnosticServerCancellationData = diag.DiagnosticServerCancellationData;
export type DocumentDiagnosticReportKind = diag.DocumentDiagnosticReportKind;
export const DocumentDiagnosticReportKind = diag.DocumentDiagnosticReportKind;
export type FullDocumentDiagnosticReport = diag.FullDocumentDiagnosticReport;
export type RelatedFullDocumentDiagnosticReport = diag.RelatedFullDocumentDiagnosticReport;
export type UnchangedDocumentDiagnosticReport = diag.UnchangedDocumentDiagnosticReport;
export type RelatedUnchangedDocumentDiagnosticReport = diag.RelatedUnchangedDocumentDiagnosticReport;
export type DocumentDiagnosticReport = diag.DocumentDiagnosticReport;
export type DocumentDiagnosticReportPartialResult = diag.DocumentDiagnosticReportPartialResult;
export const DocumentDiagnosticRequest: typeof diag.DocumentDiagnosticRequest = diag.DocumentDiagnosticRequest;
export type PreviousResultId = diag.PreviousResultId;
export type WorkspaceDiagnosticParams = diag.WorkspaceDiagnosticParams;
export type WorkspaceFullDocumentDiagnosticReport = diag.WorkspaceFullDocumentDiagnosticReport;
export type WorkspaceUnchangedDocumentDiagnosticReport = diag.WorkspaceUnchangedDocumentDiagnosticReport;
export type WorkspaceDocumentDiagnosticReport = diag.WorkspaceDocumentDiagnosticReport;
export type WorkspaceDiagnosticReport = diag.WorkspaceDiagnosticReport;
export type WorkspaceDiagnosticReportPartialResult = diag.WorkspaceDiagnosticReportPartialResult;
export const DiagnosticRefreshRequest: typeof diag.DiagnosticRefreshRequest = diag.DiagnosticRefreshRequest;
}
import * as inlay from './proposed.inlayHints';
export namespace Proposed {
export type InlayHintCategory = inlay.InlayHintCategory;
export const InlayHintCategory = inlay.InlayHintCategory;
export type InlayHint = inlay.InlayHint;
export type InlayHintsClientCapabilities = inlay.InlayHintsClientCapabilities;
export type InlayHintsOptions = inlay.InlayHintsOptions;
export type InlayHintsRegistrationOptions = inlay.InlayHintsRegistrationOptions;
export type $InlayHintsClientCapabilities = inlay.$InlayHintsClientCapabilities;
export type $InlayHintsServerCapabilities = inlay.$InlayHintsServerCapabilities;
export type InlayHintsParams = inlay.InlayHintsParams;
export const InlayHintsRequest: typeof inlay.InlayHintsRequest = inlay.InlayHintsRequest;
}