UNPKG

@univerjs-pro/sheets-pivot

Version:

Univer Sheets Pivot Table

16 lines (15 loc) 405 B
import { ICommand } from '@univerjs/core'; export interface IMovePivotTableCommandProps { pivotTableId: string; targetCellInfo: { subUnitId: string; unitId: string; row: number; col: number; }; originTargetInfo: { subUnitId: string; unitId: string; }; } export declare const MovePivotTableCommand: ICommand<IMovePivotTableCommandProps>;