import type { Identity, IMapping, IParser } from './parser'; import * as Token from '../token/index'; export interface Const extends IParser { type: 'Const'; const: Const; } export type ParseConst = (Token.TConst);