@univerjs-pro/sheets-pivot
Version:
Pivot table integration for Univer Sheets.
11 lines (10 loc) • 592 B
TypeScript
import type { IGetPivotDataLocalMutationParams, ISendPivotDataLocalMutationParams } from '../const/type';
import { Disposable, ICommandService } from '@univerjs/core';
export declare class SheetsPivotRPCService extends Disposable {
private readonly _commandService;
private _requestResolvers;
constructor(_commandService: ICommandService);
handleAsyncResponse(data: ISendPivotDataLocalMutationParams): void;
getPivotDisplayConfig(params: Omit<IGetPivotDataLocalMutationParams, 'version'>): Promise<ISendPivotDataLocalMutationParams>;
private _generateUniqueVersion;
}