ds-smart-ui
Version:
Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.
10 lines (9 loc) • 342 B
TypeScript
interface UseTableTestIdsProps<T> {
rows: T[];
enableRowSelection: boolean;
id?: string;
uniqueRowIdentifier?: keyof T;
columns: any[];
}
export declare const useTableTestIds: <T extends Record<string, unknown>>({ rows, enableRowSelection, id, uniqueRowIdentifier, columns, }: UseTableTestIdsProps<T>) => void;
export {};