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

    Interface RepeatPattern

    A pattern that matches with repetition.

    interface RepeatPattern {
        variant: "Repeat";
        pattern: Pattern;
        quantifier: Quantifier;
    }
    Index

    Properties

    variant: "Repeat"
    pattern: Pattern
    quantifier: Quantifier