UNPKG

brazejs

Version:

Liquid template engine for the Braze variant by pure JavaScript: compatible to Braze, easy to extend.

13 lines (12 loc) 304 B
export default class Token { trimLeft: boolean; trimRight: boolean; type: string; line: number; col: number; raw: string; input: string; file?: string; value: string; constructor(raw: string, input: string, line: number, col: number, file?: string); }