UNPKG

ag-grid-community

Version:

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

13 lines (12 loc) 896 B
import type { AgBeanStubEvent } from 'ag-stack'; import { AgBeanStub } from 'ag-stack'; import type { AgEventTypeParams } from '../events'; import type { GridOptionsWithDefaults } from '../gridOptionsDefault'; import type { GridOptionsService } from '../gridOptionsService'; import type { AgGridCommon } from '../interfaces/iCommon'; import type { BeanCollection } from './context'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export interface BeanStub<TEventType extends string = AgBeanStubEvent> extends AgBeanStub<BeanCollection, GridOptionsWithDefaults, AgEventTypeParams, AgGridCommon<any, any>, GridOptionsService, TEventType> { } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare const BeanStub: abstract new <TEventType extends string = AgBeanStubEvent>() => BeanStub<TEventType>;