function row_getLeafRows<TFeatures, TData>(row): Row<TFeatures, TData>[];function row_getLeafRows<TFeatures, TData>(row): Row<TFeatures, TData>[];Defined in: core/rows/coreRowsFeature.utils.ts:105
Flattens this row's descendant tree into leaf rows.
The row itself is not included; only nested subRows are walked.
TFeatures extends TableFeatures
TData extends RowData
Row<TFeatures, TData>
Row<TFeatures, TData>[]
const descendants = row_getLeafRows(row)const descendants = row_getLeafRows(row)