UNPKG

parjs

Version:

Library for building parsers using combinators.

7 lines 251 B
import type { 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>; //# sourceMappingURL=rest.d.ts.map