mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
# [7.1.0](https://github.com/harttle/liquidjs/compare/v7.0.2...v7.1.0) (2019-02-20)
### Features
* throw an Error if delimiter not matched ([c33d8f6](https://github.com/harttle/liquidjs/commit/c33d8f6))
31 lines
806 B
TypeScript
31 lines
806 B
TypeScript
declare abstract class LiquidError {
|
|
name: string;
|
|
message: string;
|
|
stack: string;
|
|
private file;
|
|
private input;
|
|
private token;
|
|
private originalError;
|
|
constructor(err: any, token: any);
|
|
captureStackTrace(obj: any): void;
|
|
}
|
|
export declare class TokenizationError extends LiquidError {
|
|
constructor(message: any, token: any);
|
|
}
|
|
export declare class ParseError extends LiquidError {
|
|
constructor(err: any, token: any);
|
|
}
|
|
export declare class RenderError extends LiquidError {
|
|
constructor(err: any, tpl: any);
|
|
}
|
|
export declare class RenderBreakError {
|
|
message: string;
|
|
resolvedHTML: string;
|
|
constructor(message: any);
|
|
}
|
|
export declare class AssertionError {
|
|
message: string;
|
|
constructor(message: any);
|
|
}
|
|
export {};
|