We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 964925a commit aca868bCopy full SHA for aca868b
src/cm/lsp/serverLauncher.ts
@@ -190,8 +190,6 @@ async function performInstallCheck(
190
}
191
192
193
-
194
195
async function startInteractiveServer(
196
command: string,
197
serverId: string,
src/index.d.ts
@@ -33,7 +33,10 @@ interface String {
33
hash(): string;
34
35
36
-type ExecutorCallback = (type: "stdout" | "stderr" | "exit", data: string) => void;
+type ExecutorCallback = (
37
+ type: "stdout" | "stderr" | "exit",
38
+ data: string,
39
+) => void;
40
41
interface Executor {
42
execute: (command: string, alpine: boolean) => Promise<string>;
0 commit comments