box-ui-elements-mlh
Version:
16 lines (11 loc) • 350 B
JavaScript
// @flow
import { SortDirection as SORT_DIRECTION } from 'react-virtualized/dist/es/Table/index';
const { ASC, DESC } = SORT_DIRECTION;
type SortDirection = ASC | DESC;
type SortParams = {
defaultSortDirection: string,
event: MouseEvent,
sortBy: string,
sortDirection: SortDirection,
};
export type { SortDirection, SortParams };