aqua/language-server-npm/aqua-lsp-api.d.ts
2022-05-17 15:05:25 +03:00

13 lines
242 B
TypeScript

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;