mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
## [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))
7 lines
238 B
TypeScript
7 lines
238 B
TypeScript
import Token from './token';
|
|
export default class DelimitedToken extends Token {
|
|
trimLeft: boolean;
|
|
trimRight: boolean;
|
|
constructor(raw: string, value: string, input: string, line: number, pos: number, file?: string);
|
|
}
|