UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

8 lines (7 loc) 338 B
import { DataTableColumnType, DataTableTableRowConfigType } from '../types/dataTable'; type ApplyGridToRowParamsType = { rowConfig?: DataTableTableRowConfigType; columns?: DataTableColumnType[]; }; export declare const applyGridToRow: ({ rowConfig, columns, }: ApplyGridToRowParamsType) => DataTableTableRowConfigType; export {};