2025-04-21 21:46:30 -04:00

15 lines
241 B
JavaScript

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