CustomFieldPredicate
1type CustomFieldPredicate = FieldPredicate<string> | 'exists' | '!exists';
A CustomFieldPredicate
must either be:
- A string equal to
"exists"
or"!exists"
- A
FieldPredicate<T>
where T is of typestring
.
1type CustomFieldPredicate = FieldPredicate<string> | 'exists' | '!exists';
A CustomFieldPredicate
must either be:
"exists"
or "!exists"
FieldPredicate<T>
where T is of type string
.