BARGS
    Preparing search index...

    Type Alias CallableOptionsParser<V>

    CallableOptionsParser: <V2, P2 extends readonly unknown[]>(
        parser: Parser<V2, P2>,
    ) => Parser<V & V2, P2> & Parser<V, readonly []>

    A Parser that can also be called as a function to merge with another parser. This allows opt.options() to work both as:

    • First arg in pipe: used directly as a Parser
    • Later arg in pipe: called as function to merge with incoming Parser

    Type Parameters

    • V