add missing and case split for lsp

This commit is contained in:
2026-02-17 22:01:58 -08:00
parent fa0eb3a26d
commit cd31156404
13 changed files with 238 additions and 142 deletions

View File

@@ -1,4 +1,4 @@
import { Diagnostic, Location } from "vscode-languageserver";
import { CodeAction, Diagnostic, Location } from "vscode-languageserver";
export function LSP_updateFile(name: string, content: string): (eta: any) => any;
export function LSP_checkFile(name: string): Diagnostic[];
@@ -7,3 +7,4 @@ interface HoverResult {
location: Location
}
export function LSP_hoverInfo(name: string, row: number, col: number): HoverResult|null;
export function LSP_codeActionInfo(name: string, row: number, col: number): CodeAction[]|null;