UNPKG

parjs

Version:

Library for building parsers using combinators.

9 lines 395 B
import type { ParjsCombinator } from "../../index"; /** * Applies the source parser until it fails softly, and yields all of its results in an array. * * @param maxIterations Optionally, the maximum number of times to apply the source parser. Defaults * to `Infinity`. */ export declare function many<T>(maxIterations?: number): ParjsCombinator<T, T[]>; //# sourceMappingURL=many.d.ts.map