UNPKG

xast

Version:
6 lines (5 loc) 186 B
import { NodeParser, Node } from '../Parser'; export interface NullValueNode extends Node { readonly kind: 'NULL'; } export declare const nullValueParser: NodeParser<NullValueNode>;