interface BoolExp<T> {
    _and?: T[];
    _not?: T;
    _or?: T[];
    return?: {
        [key: string]: ReturnBoolExp;
    };
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

_and?: T[]
_not?: T
_or?: T[]
return?: {
    [key: string]: ReturnBoolExp;
}
MMNEPVFCICPMFPCPTTAAATR