Interface SortSpec

interface SortSpec {
    direction?: "asc" | "desc";
    field: string;
}

Properties

Properties

direction?: "asc" | "desc"
field: string