PR adds ability to specify type for table data to avoid any in childComponents rowData and Table data
const data: TableDataItem[] = [];
<Table<TableDataItem> // define data item type
data=[data] // data has TableDataItem[] type
//...
childComponents={{
cellText: {
content: (props) => {
//.. props.rowData has type TableDataItem
}
}
}}
}}
.../>
PR adds ability to specify type for table data to avoid
any
in childComponentsrowData
and Tabledata
343