add missing and case split for lsp
This commit is contained in:
3
newt-vscode-lsp/src/newt.d.ts
vendored
3
newt-vscode-lsp/src/newt.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user