tsqtsq - v1.3.0
    Preparing search index...

    Type Alias LogicalOpParams

    Parameters for logical set operators (and, or, unless) with optional vector matching.

    type LogicalOpParams = {
        ignoring?: string[];
        left: string;
        on?: string[];
        right: string;
    }
    Index

    Properties

    Properties

    ignoring?: string[]

    match ignoring these labels; only applied when on is not specified

    left: string
    on?: string[]

    match on these labels; takes precedence over ignoring if both provided

    right: string