UNPKG

xast

Version:
7 lines (6 loc) 199 B
import { NodeParser, Node } from '../Parser'; export interface NameNode extends Node { readonly kind: 'NAME'; readonly value: string; } export declare const nameParser: NodeParser<NameNode>;