export const tokenTypes = { TEXT: 'text', VARIABLE: 'variable', FRAGMENT: 'fragment', }; export class Token { type; content; constructor(type, token) { this.type = type; this.content = token; } }