epiphany/node_modules/@csstools/css-tokenizer/dist/interfaces/error.d.ts
2023-12-09 22:48:07 -08:00

9 lines
415 B
TypeScript

export declare class ParseError extends Error {
/** The index of the start character of the current token. */
sourceStart: number;
/** The index of the end character of the current token. */
sourceEnd: number;
/** The parser steps that preceded the error. */
parserState: Array<string>;
constructor(message: string, sourceStart: number, sourceEnd: number, parserState: Array<string>);
}