mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -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))
8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
import Token from './token';
|
|
import { NormalizedFullOptions } from '../liquid-options';
|
|
export default class Tokenizer {
|
|
options: NormalizedFullOptions;
|
|
constructor(options?: NormalizedFullOptions);
|
|
tokenize(input: string, file?: string): Token[];
|
|
}
|