UNPKG

parjs

Version:

A parser-combinator library for JavaScript.

11 lines (10 loc) 244 B
/** * @module parjs */ /** */ import { Parjser } from "../parjser"; /** * Returns a parser that consumes all the rest of the input and yields the * text that was parsed. Always succeeds. */ export declare function rest(): Parjser<string>;