ohctechv3/.svn/pristine/74/740f9cf935e15f2bddcf5fd2fc5fd4244998c29f.svn-base
2024-10-28 15:03:36 +05:30

9 lines
465 B
Plaintext

import { Context, UserCompDetails } from 'ag-grid-community';
import { MutableRefObject } from 'react';
/**
* Show a JS Component
* @returns Effect Cleanup function
*/
export declare const showJsComp: (compDetails: UserCompDetails | undefined | null, context: Context, eParent: HTMLElement, ref?: MutableRefObject<any> | ((ref: any) => void) | undefined) => (() => void) | undefined;
export declare const createSyncJsComp: (compDetails: UserCompDetails) => any;