parjs
Version:
Library for building parsers using combinators.
8 lines • 306 B
TypeScript
import type { Parjser } from "../..";
/**
* Returns a parser that parses exactly `length` characters and yields the text that was parsed.
*
* @param length The number of characters to parse.
*/
export declare function stringLen(length: number): Parjser<string>;
//# sourceMappingURL=string-len.d.ts.map