UNPKG

xast

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