Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/run.ts')
| -rw-r--r-- | editors/code/src/run.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/code/src/run.ts b/editors/code/src/run.ts index c20a5487b7..8ec569b603 100644 --- a/editors/code/src/run.ts +++ b/editors/code/src/run.ts @@ -1,11 +1,11 @@ import * as vscode from "vscode"; -import * as lc from "vscode-languageclient"; +import type * as lc from "vscode-languageclient"; import * as ra from "./lsp_ext"; import * as tasks from "./tasks"; -import { CtxInit } from "./ctx"; +import type { CtxInit } from "./ctx"; import { makeDebugConfig } from "./debug"; -import { Config, RunnableEnvCfg } from "./config"; +import type { Config, RunnableEnvCfg } from "./config"; import { unwrapUndefinable } from "./undefinable"; const quickPickButtons = [ |