import { RecursiveParser } from "https://deno.land/x/ts_matches@v5.2.0/src/parsers/recursive-parser.ts";
This parser is used when trying to create parsers that user their own definitions in their types, like interface Tree { [key: string]: Tree | Leaf; }
Static Methods
create<B>(fn: (parser: Parser<unknown, any>) => Parser<unknown, unknown>): RecursiveParser<B>