diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-06-27 19:43:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 19:43:43 +0200 |
commit | 681bb49d0df0865a6564741544869a57aab56bb1 (patch) | |
tree | 142bae4a04e696d16490814f4c36116bc85adf5a /cli/tsc/compiler.d.ts | |
parent | 440250c05498e3bfc8682e91476dc6e0e3a79429 (diff) |
fix(lsp): restart TS language service when caching dependencies (#14979)
Diffstat (limited to 'cli/tsc/compiler.d.ts')
-rw-r--r-- | cli/tsc/compiler.d.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tsc/compiler.d.ts b/cli/tsc/compiler.d.ts index 2ea7eb298..1ba116170 100644 --- a/cli/tsc/compiler.d.ts +++ b/cli/tsc/compiler.d.ts @@ -251,4 +251,8 @@ declare global { specifier: string; position: number; } + + interface Restart { + method: "restart"; + } } |