UNPKG

ag-grid-enterprise

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

18 lines (17 loc) 831 B
import type { IntegratedModule } from 'ag-charts-types'; import type { NamedBean } from 'ag-grid-community'; import { BeanStub } from 'ag-grid-community'; import type { IAgChartsExports } from '../agStack/iAgChartsExports'; /** MAKE SURE TO UPDATE THE SCRIPT scripts/ci/substituteAgChartsTypesScene.sh WHEN CHANGING THIS FILE */ type ChartTypes = IntegratedModule; /** Bean to expose the AG Charts apis from a single location and not require a code dependency on ag-charts-community */ export declare class AgChartsExports extends BeanStub implements NamedBean, IAgChartsExports { beanName: "agChartsExports"; isEnterprise: boolean; create: ChartTypes['create']; _Theme: ChartTypes['_Theme']; _Scene: ChartTypes['_Scene']; _Util: ChartTypes['_Util']; constructor(params: IntegratedModule); } export {};