Interface OrderByCondition

interface OrderByCondition {
    [key: string]: "ASC" | "DESC";
}

Indexable

[key: string]: "ASC" | "DESC"