UNPKG

@commercetools-uikit/hooks

Version:

A collection of React hooks used across some of the UI-Kit components.

11 lines (10 loc) 386 B
export type TSortDefinition = { key: string; order: 'desc' | 'asc'; }; export type TDataTableSortingState = { value: TSortDefinition; onChange: (key: TSortDefinition['key'], order: TSortDefinition['order']) => void; }; declare const useDataTableSortingState: (initialValues?: Partial<TSortDefinition>) => TDataTableSortingState; export default useDataTableSortingState;