summaryrefslogtreecommitdiff
path: root/cli/tsc/compiler.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/compiler.d.ts')
-rw-r--r--cli/tsc/compiler.d.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tsc/compiler.d.ts b/cli/tsc/compiler.d.ts
index a1ee45797..b59f6dca8 100644
--- a/cli/tsc/compiler.d.ts
+++ b/cli/tsc/compiler.d.ts
@@ -75,7 +75,7 @@ declare global {
| GetNavigationTree
| GetOutliningSpans
| GetQuickInfoRequest
- | GetReferencesRequest
+ | FindReferencesRequest
| GetSignatureHelpItemsRequest
| GetSmartSelectionRange
| GetSupportedCodeFixes
@@ -212,8 +212,8 @@ declare global {
position: number;
}
- interface GetReferencesRequest extends BaseLanguageServerRequest {
- method: "getReferences";
+ interface FindReferencesRequest extends BaseLanguageServerRequest {
+ method: "findReferences";
specifier: string;
position: number;
}