@designliquido/xpath
    Preparing search index...

    Interface MatchResult

    Result of a sequence type match operation

    interface MatchResult {
        matches: boolean;
        reason?: string;
        itemCount?: number;
    }
    Index

    Properties

    matches: boolean

    Whether the value matches the SequenceType

    reason?: string

    If doesn't match, reason why

    itemCount?: number

    Number of items that matched (useful for debugging)