ag-grid-vue3
Version:
AG Grid Vue 3 Component
17 lines (16 loc) • 668 B
TypeScript
export declare class VueComponentFactory {
private static componentCache;
private static getComponentDefinition;
private static addParamsToProps;
static createAndMountComponent(component: any, params: any, parent: any, provides: any, gridId: string | undefined): {
componentInstance: any;
element: any;
destroy: () => void;
} | undefined;
static mount(component: any, props: any, parent: any, provides: any): {
vNode: any;
destroy: () => void;
el: any;
};
static searchForComponentInstance(parent: any, component: any, maxDepth?: number, suppressError?: boolean, gridId?: string): any;
}