diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-11-23 11:08:56 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 11:08:56 +1100 |
commit | bf5657cd590a0624d614a09ff6fc3538f94643da (patch) | |
tree | 26420625430f9b043d8406ed21039fb962b7a502 /cli/tsc/compiler.d.ts | |
parent | 3abe31252e02c3488727c7aa15a4d3a301d96531 (diff) |
feat(lsp): add workspace symbol provider (#12787)
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 ff2e59e8e..8e6b6d417 100644 --- a/cli/tsc/compiler.d.ts +++ b/cli/tsc/compiler.d.ts @@ -58,6 +58,7 @@ declare global { | GetDocumentHighlightsRequest | GetEncodedSemanticClassifications | GetImplementationRequest + | GetNavigateToItems | GetNavigationTree | GetOutliningSpans | GetQuickInfoRequest @@ -173,6 +174,13 @@ declare global { position: number; } + interface GetNavigateToItems extends BaseLanguageServerRequest { + method: "getNavigateToItems"; + search: string; + maxResultCount?: number; + fileName?: string; + } + interface GetNavigationTree extends BaseLanguageServerRequest { method: "getNavigationTree"; specifier: string; |