ng-table
Version:
Table + AngularJS ================= [](https://travis-ci.org/esvit/ng-table) [](https://coveralls.io/r/esvit/ng-table) [![seman
9 lines (8 loc) • 306 B
TypeScript
export declare type SortDirection = 'asc' | 'desc';
/**
* Map of the names of fields on a data row and the corrosponding sort direction;
* Set the value of a key to undefined to let value of {@link ISettings} `defaultSort` apply
*/
export interface ISortingValues {
[name: string]: SortDirection;
}