This commit is contained in:
harttle
2019-02-19 23:55:38 +08:00
parent cbebb00ef1
commit 29f53304bc
70 changed files with 3162 additions and 2565 deletions
+31
View File
@@ -0,0 +1,31 @@
declare abstract class LiquidError {
name: string;
message: string;
stack: string;
private line;
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 {};