Coda by Ian Macalinao
    Preparing search index...

    Interface PrefixedCountNode<TPrefix>

    A count strategy where the number of items is read from a numeric prefix.

    interface PrefixedCountNode<
        TPrefix extends
            NestedTypeNode<NumberTypeNode> = NestedTypeNode<NumberTypeNode>,
    > {
        kind: "prefixedCountNode";
        prefix: TPrefix;
    }

    Type Parameters

    Index
    kind: "prefixedCountNode"
    prefix: TPrefix

    The numeric type used as the count prefix.