UNPKG

@jigoooo/shared-ui

Version:

A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.

9 lines (8 loc) 217 B
export declare function validateTableDataList<T>(dataList: unknown[], keys: (keyof T)[]): { valid: boolean; message: string; missingInfo: { index: number; missing: (keyof T)[]; }[]; };