chore(release): 7.2.1 [skip ci]

## [7.2.1](https://github.com/harttle/liquidjs/compare/v7.2.0...v7.2.1) (2019-02-22)

### Bug Fixes

* default length for truncate and truncatewords ([56c7992](https://github.com/harttle/liquidjs/commit/56c7992))
This commit is contained in:
semantic-release-bot
2019-02-22 19:56:16 +00:00
parent 3cf01603e8
commit 37d12a14eb
62 changed files with 620 additions and 711 deletions
+12 -17
View File
@@ -1,30 +1,25 @@
declare abstract class LiquidError {
name: string;
message: string;
stack: string;
private file;
private input;
import Token from 'src/parser/token';
import ITemplate from 'src/template/itemplate';
declare abstract class LiquidError extends Error {
private token;
private originalError;
constructor(err: any, token: any);
captureStackTrace(obj: any): void;
constructor(err: Error, token: Token);
protected update(): void;
}
export declare class TokenizationError extends LiquidError {
constructor(message: any, token: any);
constructor(message: string, token: Token);
}
export declare class ParseError extends LiquidError {
constructor(err: any, token: any);
constructor(err: Error, token: Token);
}
export declare class RenderError extends LiquidError {
constructor(err: any, tpl: any);
constructor(err: Error, tpl: ITemplate);
}
export declare class RenderBreakError {
message: string;
export declare class RenderBreakError extends Error {
resolvedHTML: string;
constructor(message: any);
constructor(message: string);
}
export declare class AssertionError {
message: string;
constructor(message: any);
export declare class AssertionError extends Error {
constructor(message: string);
}
export {};