import { Position } from './position.class.js'; export interface Token { type: string; value: string; position: Position; }