UNPKG

rms-react

Version:

Библиотека React компонентов разработанная по дизайн системе РМ Солюшн

12 lines 439 B
import { ITableContext } from 'context'; import { DetailedHTMLProps, HTMLAttributes } from 'react'; import { TableRowProps } from '../TableRow'; export interface TableProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'ref'> { rows: TableRow[]; tableContextOptions: ITableContext; } interface TableRow extends TableRowProps { id: string; } export {}; //# sourceMappingURL=Table.props.d.ts.map