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