UNPKG

1.11 kBTypeScriptView Raw
1import type { IntegratedModule } from 'ag-charts-types';
2import type { _ModuleWithoutApi } from 'ag-grid-community';
3type AllEnterpriseModuleType = {
4 with: (params: IntegratedModule) => _ModuleWithoutApi;
5} & _ModuleWithoutApi;
6/**
7 * @feature All Enterprise and Community features
8 * Registers all the Grid features: Community and Enterprise.
9 * If using Integrated Charts or Sparklines then the relevant AG Charts module must be provided.
10 * @example
11 * // All Enterprise features
12 * import { ModuleRegistry } from 'ag-grid-community';
13 * import { AllEnterpriseModule } from 'ag-grid-enterprise';
14 *
15 * ModuleRegistry.registerModules([ AllEnterpriseModule ]);
16 * @example
17 * // All Enterprise features including Integrated Charts and Sparklines
18 * import { ModuleRegistry } from 'ag-grid-community';
19 * import { AgChartsEnterpriseModule } from 'ag-charts-enterprise';
20 * import { AllEnterpriseModule } from 'ag-grid-enterprise';
21 *
22 * ModuleRegistry.registerModules([ AllEnterpriseModule.with(AgChartsEnterpriseModule) ]);
23 *
24 */
25export declare const AllEnterpriseModule: AllEnterpriseModuleType;
26export {};