diff options
author | Jean Pierre <jeanp413@hotmail.com> | 2021-04-19 20:26:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 11:26:36 +1000 |
commit | 6d404ec54bab00d9f86c8d69a70dd94e5ab83434 (patch) | |
tree | 5c1d99cc17da1134b9fb728ff8e9689e00a1694c /cli/tsc/compiler.d.ts | |
parent | b6203cb4657f8269bf80b135b3c49fb9304895c1 (diff) |
feat(lsp): Implement textDocument/semanticTokens/full (#10233)
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Diffstat (limited to 'cli/tsc/compiler.d.ts')
-rw-r--r-- | cli/tsc/compiler.d.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tsc/compiler.d.ts b/cli/tsc/compiler.d.ts index 1488f1b02..13e6564b4 100644 --- a/cli/tsc/compiler.d.ts +++ b/cli/tsc/compiler.d.ts @@ -56,6 +56,7 @@ declare global { | GetDefinitionRequest | GetDiagnosticsRequest | GetDocumentHighlightsRequest + | GetEncodedSemanticClassifications | GetImplementationRequest | GetNavigationTree | GetOutliningSpans @@ -144,6 +145,13 @@ declare global { filesToSearch: string[]; } + interface GetEncodedSemanticClassifications + extends BaseLanguageServerRequest { + method: "getEncodedSemanticClassifications"; + specifier: string; + span: ts.TextSpan; + } + interface GetImplementationRequest extends BaseLanguageServerRequest { method: "getImplementation"; specifier: string; |