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

    类型别名 KeysOfOtherType<TSchema, Type>

    KeysOfOtherType: {
        [key in keyof TSchema]: NonNullable<TSchema[key]> extends Type
            ? never
            : key
    }[keyof TSchema]

    类型参数

    • TSchema
    • Type