@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
13 lines (12 loc) • 1.22 kB
TypeScript
import { $AggregatesCheckboxServices } from "@docsvision/webclient/Platform/AggregatesCheckboxService";
import { IAggregatesServiceOptions } from "@docsvision/webclient/Platform/IAggregates";
import { ITablePlugins, TablePlugins } from "@docsvision/web/components/table/interfaces";
import { $TableFilterService } from "@docsvision/web/components/table/plugins/filter";
import { $SidePanel } from "@docsvision/web/components/table/plugins/side-panel";
import { $Resources } from "@docsvision/web/core/localization/$Resources";
import { $Aggregates } from "@docsvision/webclient/Platform/$AggregatesCheckbox";
export declare const AggregatesFeature = "Aggregates";
export declare const AggregatesPanelContentSidePanelPlugin: TablePlugins.SidePanel.Component<$SidePanel & $Aggregates & $Resources & $AggregatesCheckboxServices>;
export declare const getAggregatesServiceProvider: (options: IAggregatesServiceOptions) => TablePlugins.ServiceProvider<$Aggregates & $AggregatesCheckboxServices & $TableFilterService>;
export declare const AggregatesApplyButtonPanelPlugin: TablePlugins.Root.Component<$Aggregates & $Resources>;
export declare const getAggregatesPlugins: (options: IAggregatesServiceOptions) => ITablePlugins;