Interface OperationContains

interface OperationContains {
    ignore_case?: boolean;
    op: "contains";
    path: string | Path;
    value: string;
}

Hierarchy (view full)

Properties

ignore_case?: boolean
op: "contains"
path: string | Path
value: string