UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

12 lines (11 loc) 225 B
import { IColumn } from '../Table.types'; interface Item { [key: string]: any; } export interface TableRowProps { item: Item; tableId: string; columns: IColumn[]; onRowClick?: any; } export {};