API 参考
    正在准备搜索索引...

    类型别名 AlternativeType<T>

    AlternativeType: T extends ReadonlyArray<infer U>
        ? T | RegExpOrString<U>
        : RegExpOrString<T>

    It is possible to search using alternative types in mongodb e.g. string types can be searched using a regex in mongo array types can be searched using their element type

    类型参数

    • T