aqua/language-server-npm/aqua-lsp-api.d.ts

13 lines
242 B
TypeScript
Raw Normal View History

2022-05-17 12:05:25 +00:00
export interface ErrorInfo {
start: number,
end: number,
message: string,
location: string | null
}
export class Compiler {
compile(path: string, imports: string[]): Promise<ErrorInfo[]>;
}
export var AquaLSP: Compiler;