UNPKG

react-use-object-state

Version:

React hooks to create stateful API's for reusable object patterns

8 lines (7 loc) 198 B
export declare type PaginationOrder = "asc" | "desc"; export declare type PaginationState = { order?: PaginationOrder; orderBy?: string; page: number; rowsPerPage: number; };