AlternativeType type
Home > @cbnsndwch/zero-contracts > AlternativeType
AlternativeType type
It is possible to search using alternative types in mongodb e.g. string types can be searched using a regex in mongo, and array types can be searched using their element type
Signature:
type AlternativeType<T> =
T extends ReadonlyArray<infer U>
? T | RegExpOrString<U>
: RegExpOrString<T>;References: RegExpOrString
How was this page?