import type { Identity, IMapping, IParser } from './parser'; import * as Token from '../token/index'; export interface BigInt extends IParser { type: 'BigInt'; } export type ParseBigInt = (Token.TBigInt);