UNPKG

@univerjs-pro/sheets-pivot

Version:

Pivot table integration for Univer Sheets.

19 lines (18 loc) 960 B
import type { IUniverSheetsPivotConfig } from './controllers/config.schema'; import { ICommandService, IConfigService, Injector, Plugin, UniverInstanceType } from '@univerjs/core'; import { DataSyncPrimaryController } from '@univerjs/rpc'; export declare class UniverSheetsPivotTablePlugin extends Plugin { private readonly _config; readonly _injector: Injector; private readonly _commandService; private readonly _configService; private readonly _dataSyncPrimaryController?; static pluginName: string; static packageName: string; static version: string; static type: UniverInstanceType; constructor(_config: IUniverSheetsPivotConfig | undefined, _injector: Injector, _commandService: ICommandService, _configService: IConfigService, _dataSyncPrimaryController?: DataSyncPrimaryController | undefined); _initConfig(config: IUniverSheetsPivotConfig): void; onStarting(): void; private _initRegisterCommand; }