From c0e3b6096d37e9a4243c7ad461487db291c824fa Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 25 Apr 2022 11:23:24 -0400 Subject: refactor(lsp): store all the assets in Rust when initializing (#14367) --- cli/tsc/compiler.d.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'cli/tsc/compiler.d.ts') diff --git a/cli/tsc/compiler.d.ts b/cli/tsc/compiler.d.ts index 946b23486..e84484884 100644 --- a/cli/tsc/compiler.d.ts +++ b/cli/tsc/compiler.d.ts @@ -46,7 +46,7 @@ declare global { type LanguageServerRequest = | ConfigureRequest | FindRenameLocationsRequest - | GetAsset + | GetAssets | GetApplicableRefactors | GetEditsForRefactor | GetCodeFixes @@ -91,9 +91,8 @@ declare global { providePrefixAndSuffixTextForRename: boolean; } - interface GetAsset extends BaseLanguageServerRequest { - method: "getAsset"; - specifier: string; + interface GetAssets extends BaseLanguageServerRequest { + method: "getAssets"; } interface GetApplicableRefactors extends BaseLanguageServerRequest { -- cgit v1.2.3