Member Junction
    Preparing search index...

    Interface PatternMatchResult

    Result of a pattern match operation

    interface PatternMatchResult {
        matched: boolean;
        matchedPattern: string | null;
    }
    Index

    Properties

    matched: boolean

    Whether any pattern matched

    matchedPattern: string | null

    The specific pattern that matched (null if no match)