Envelope Pattern TypeScript - v1.0.0-alpha.20
    Preparing search index...

    Type Alias LeafPattern

    LeafPattern:
        | { type: "Cbor"; pattern: CBORPattern }
        | { type: "Number"; pattern: NumberPattern }
        | { type: "Text"; pattern: TextPattern }
        | { type: "ByteString"; pattern: ByteStringPattern }
        | { type: "Tag"; pattern: TaggedPattern }
        | { type: "Array"; pattern: ArrayPattern }
        | { type: "Map"; pattern: MapPattern }
        | { type: "Bool"; pattern: BoolPattern }
        | { type: "Null"; pattern: NullPattern }
        | { type: "Date"; pattern: DatePattern }
        | { type: "KnownValue"; pattern: KnownValuePattern }

    Union type for all leaf patterns.

    Corresponds to the Rust LeafPattern enum in pattern/leaf/mod.rs