edgeport - v1.0.3
    Preparing search index...

    Interface SubstringsFilter

    A substring filter: attr=initial*any*...*final, with at least one piece present.

    interface SubstringsFilter {
        any?: string[];
        attribute: string;
        final?: string;
        initial?: string;
        type: "substrings";
    }
    Index
    any?: string[]

    Ordered middle pieces (between *s).

    attribute: string

    The attribute description.

    final?: string

    The trailing anchor (the text after the last *), if any.

    initial?: string

    The leading anchor (the text before the first *), if any.

    type: "substrings"

    Discriminator.