mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 04:40:39 -07:00
## [7.2.2](https://github.com/harttle/liquidjs/compare/v7.2.1...v7.2.2) (2019-02-23)
### Bug Fixes
* filters break when argument contains [()|, fixes [#89](https://github.com/harttle/liquidjs/issues/89) ([e977669](https://github.com/harttle/liquidjs/commit/e977669))
11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
export default class Token {
|
|
type: string;
|
|
line: number;
|
|
col: number;
|
|
raw: string;
|
|
input: string;
|
|
file?: string;
|
|
value: string;
|
|
constructor(raw: string, input: string, line: number, col: number, file?: string);
|
|
}
|