mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import Token from './token';
|
|
export default class DelimitedToken extends Token {
|
|
trimLeft: boolean;
|
|
trimRight: boolean;
|
|
constructor(raw: any, pos: any, input: any, file: any, line: any);
|
|
}
|