NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/data-set/lib/basic-transform/pivot.d.ts
2023-09-14 14:47:11 +08:00

10 lines
308 B
TypeScript

import { RowData } from '../helper';
import * as statistics from '../util/statistics';
export interface PivotOptions {
field: string;
value: string;
groupBy?: string | string[];
op?: keyof typeof statistics;
}
export declare function pivot(rows: RowData[], options: PivotOptions): RowData[];