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

    Type Alias MetaPattern

    MetaPattern:
        | { type: "Any"; pattern: AnyPattern }
        | { type: "And"; pattern: AndPattern }
        | { type: "Or"; pattern: OrPattern }
        | { type: "Not"; pattern: NotPattern }
        | { type: "Repeat"; pattern: RepeatPattern }
        | { type: "Capture"; pattern: CapturePattern }
        | { type: "Search"; pattern: SearchPattern }
        | { type: "Sequence"; pattern: SequencePattern }

    Union of all meta pattern types.