mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-11 17:30:18 +00:00
13 lines
242 B
TypeScript
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;
|