You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
317 B
TypeScript

import type { Context } from "./context";
/**
* Svelte parse errors.
*/
export declare class ParseError extends SyntaxError {
index: number;
lineNumber: number;
column: number;
/**
* Initialize this ParseError instance.
*/
constructor(message: string, offset: number, ctx: Context);
}