tanstack-shadcn-table
Version:
A powerful, feature-rich React table component built on top of TanStack Table v8 with shadcn/ui styling. Optimized bundle size with 55% reduction through peer dependencies.
5 lines (4 loc) • 354 B
TypeScript
import { FilterFn, SortingFn } from "@tanstack/react-table";
export declare const fuzzyFilter: FilterFn<any>;
export declare const fuzzySort: SortingFn<any>;
export declare function useExternalState<T>(externalState: T | undefined, onExternalChange: ((val: T) => void) | undefined, initialInternalState?: T): [T, (val: React.SetStateAction<T>) => void];