summaryrefslogtreecommitdiff
path: root/cli/tsc/compiler.d.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-12-16 06:34:39 +1100
committerGitHub <noreply@github.com>2020-12-16 06:34:39 +1100
commit892d6cc99749247884fdbe2d89ca13def3af8bdb (patch)
treedc77d1da3e96876882b309f554921b290a80026b /cli/tsc/compiler.d.ts
parent6356345365e766d984f591506fb475d7935685de (diff)
refactor(lsp): optimise static assets (#8771)
Fixes #8158
Diffstat (limited to 'cli/tsc/compiler.d.ts')
-rw-r--r--cli/tsc/compiler.d.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tsc/compiler.d.ts b/cli/tsc/compiler.d.ts
index a1f4e851c..39afbe884 100644
--- a/cli/tsc/compiler.d.ts
+++ b/cli/tsc/compiler.d.ts
@@ -42,6 +42,7 @@ declare global {
type LanguageServerRequest =
| ConfigureRequest
+ | GetAsset
| GetSyntacticDiagnosticsRequest
| GetSemanticDiagnosticsRequest
| GetSuggestionDiagnosticsRequest
@@ -62,6 +63,11 @@ declare global {
compilerOptions: Record<string, any>;
}
+ interface GetAsset extends BaseLanguageServerRequest {
+ method: "getAsset";
+ specifier: string;
+ }
+
interface GetSyntacticDiagnosticsRequest extends BaseLanguageServerRequest {
method: "getSyntacticDiagnostics";
specifier: string;