@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
14 lines (13 loc) • 398 B
TypeScript
import * as React from 'react';
export interface CellPopupProps {
isOpen: boolean;
columnId: string;
primaryKeyValue: number | string;
className?: string;
}
export type CellPopupHandle = {
refreshContent: () => void;
};
export declare const CellPopup: React.ForwardRefExoticComponent<CellPopupProps & {
children?: React.ReactNode;
} & React.RefAttributes<CellPopupHandle>>;