UNPKG

parjs

Version:

A parser-combinator library for JavaScript.

10 lines (9 loc) 228 B
/** * @module parjs/combinators */ /** */ import { ParjsCombinator } from "../../index"; /** * Applies the source parser and yields a stringified result. */ export declare function stringify(): ParjsCombinator<any, string>;