diff options
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; |