@eagleoutice/flowr - v2.13.1
    Preparing search index...

    The type of the actual values of the set range domain as tuple with a set of values that must be present and a set of values that may be present (i.e. [{"id","name"}, ∅], or [{"id"}, {"score"}])

    type SetRangeValue<T> = {
        may: ReadonlySet<T> | typeof Top;
        must: ReadonlySet<T>;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    may: ReadonlySet<T> | typeof Top
    must: ReadonlySet<T>