@ossedb/patmat - v1.0.0
    Preparing search index...

    Type Alias MatchedOf<Pt>

    MatchedOf: Pt extends Pat<infer T, Captures>
        ? T
        : Pt extends Primitive ? Pt : unknown

    The type of values a pattern matches: the phantom type of a combinator, the literal type of a primitive, and unknown for composite patterns.

    Type Parameters

    • Pt