UNPKG

ag-grid-community

Version:

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

19 lines (18 loc) 970 B
import type { FrameworkOverridesIncomingSource } from './agStack/interfaces/agFrameworkOverrides'; import type { IFrameworkOverrides } from './interfaces/iFrameworkOverrides'; /** * The base frameworks, eg React & Angular, override this bean with implementations specific to their requirement. * @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare class VanillaFrameworkOverrides implements IFrameworkOverrides { private readonly frameworkName; readonly renderingEngine: 'vanilla' | 'react'; readonly batchFrameworkComps: boolean; private readonly baseDocLink; constructor(frameworkName?: 'javascript' | 'angular' | 'react' | 'vue'); wrapIncoming: <T>(callback: () => T, source?: FrameworkOverridesIncomingSource) => T; wrapOutgoing: <T>(callback: () => T) => T; frameworkComponent(_: string): any; isFrameworkComponent(_: any): boolean; getDocLink(path?: string): string; }