File size: 317 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}