UNPKG

xast

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