8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
![]() |
import { RowData } from '../helper';
|
||
|
export interface FillRowsOptions {
|
||
|
fillBy?: 'group' | 'order';
|
||
|
groupBy?: string[];
|
||
|
orderBy?: string[];
|
||
|
}
|
||
|
export declare function fillRows(rows: RowData[], options: FillRowsOptions): RowData[];
|