diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-04-25 11:23:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 11:23:24 -0400 |
commit | c0e3b6096d37e9a4243c7ad461487db291c824fa (patch) | |
tree | 83a2cd2c0c002cb84a4f3f1accbc8805daa56701 /cli/tsc/compiler.d.ts | |
parent | 12f7581ed9ee5324a425074d30aedd38b89d4838 (diff) |
refactor(lsp): store all the assets in Rust when initializing (#14367)
Diffstat (limited to 'cli/tsc/compiler.d.ts')
-rw-r--r-- | cli/tsc/compiler.d.ts | 7 |
1 files changed, 3 insertions, 4 deletions
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 { |