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

    类型别名 FindOptionsOrderValue

    FindOptionsOrderValue:
        | "ASC"
        | "DESC"
        | "asc"
        | "desc"
        | 1
        | -1
        | {
            direction?: "asc"
            | "desc"
            | "ASC"
            | "DESC";
            nulls?: "first" | "last" | "FIRST" | "LAST";
        }

    Value of order by in find options.