UNPKG

194 BTypeScriptView Raw
1import { SortDirection } from './sort-direction.type';
2import { TableColumnProp } from './table-column.type';
3export interface SortPropDir {
4 dir: SortDirection;
5 prop: TableColumnProp;
6}