UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

10 lines 325 B
import { type Sorting } from '../lib/utils'; interface Sort { sort?: Sorting; sorting: (list?: any[]) => any[]; setSort: (sort: Sorting) => void; sortArrow: (key: Sorting | string) => 'sort' | 'sort-up' | 'sort-down'; } export default function useSort(): Sort; export {}; //# sourceMappingURL=useSort.d.ts.map