Base interface for all query conditions. Each specific condition extends this with its own type constraints.

interface QueryCondition {
    operator: string;
}

Hierarchy (view full)

Properties

Properties

operator: string