Logos DX
    Preparing search index...

    Interface MatchTypes

    Match types for route-based configuration rules.

    These options determine how paths are matched for deduplication/cache rules. Multiple match types can be combined (AND logic), except for is which requires an exact match and cannot be combined with others.

    interface MatchTypes {
        endsWith?: string;
        includes?: string;
        is?: string;
        match?: RegExp;
        startsWith?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    endsWith?: string

    Path must end with this suffix

    includes?: string

    Path must contain this substring

    is?: string

    Exact path match

    match?: RegExp

    Path must match this regular expression

    startsWith?: string

    Path must start with this prefix