EnumRules<T, K, VT>
type EnumRules<T, K, VT> =
| RuleOperatorNullable<T, K>
| RuleEqualNullable<T, K, VT>
| RuleIn<T, K, VT>;
Defined in: packages/rxdb/src/repository/query.interface.ts:271
enum 枚举类型查询规则 支持:等于、不等于、为空、不为空、in、notIn
Type Parameters
| Type Parameter | Default type |
|---|---|
T | - |
K extends StringKey<T> | StringKey<T> |
VT | T[K] |