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.
8 lines (7 loc) • 408 B
TypeScript
import { InputHTMLAttributes } from "react";
declare function DebouncedInput({ value: initialValue, onChange, debounce, type, maxLength, ...props }: {
value: string | number | undefined;
onChange: (value: string | number | undefined) => void;
debounce?: number;
} & Omit<InputHTMLAttributes<HTMLInputElement>, "onChange">): import("react/jsx-runtime").JSX.Element;
export default DebouncedInput;