dns-witch.net.eu.org/node_modules/liquidjs/dist/tokens/delimited-token.d.ts
2025-07-05 18:19:59 +02:00

9 lines
431 B
TypeScript

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;
}