Files
beall-11ty/node_modules/liquidjs/dist/tokens/delimited-token.d.ts

10 lines
422 B
TypeScript
Raw Normal View History

2026-03-31 16:38:22 -07:00
import { Token } from './token';
import { TokenKind } from '../parser';
export declare abstract class DelimitedToken extends Token {
trimLeft: boolean;
trimRight: boolean;
contentRange: [number, number];
constructor(kind: TokenKind, [contentBegin, contentEnd]: [number, number], input: string, begin: number, end: number, trimLeft: boolean, trimRight: boolean, file?: string);
get content(): string;
}