src/lib/select-row/select-row.options.ts
Properties |
|
| compareWith |
compareWith:
|
Type : function
|
| Optional |
| emitChanges |
emitChanges:
|
Type : boolean
|
| Optional |
| multiple |
multiple:
|
Type : boolean
|
| Optional |
| selected |
selected:
|
Type : RowData[]
|
| Optional |
export interface SelectRowOptions<RowData = unknown> {
multiple?: boolean;
selected?: RowData[];
emitChanges?: boolean;
compareWith?: (o1: RowData, o2: RowData) => boolean;
}