@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
18 lines (17 loc) • 902 B
TypeScript
import * as React from 'react';
import { ModuleViewPopupProps } from '../Components/SharedProps/ModuleViewPopupProps';
import { EditableConfigEntityState } from '../Components/SharedProps/EditableConfigEntityState';
import * as InternalRedux from '../../Redux/ActionsReducers/InternalRedux';
import { CellSummmaryInfo } from '../../AdaptableState/Common/CellSummary';
interface CellSummaryPopupProps extends ModuleViewPopupProps<CellSummaryPopupComponent> {
CellSummary: CellSummmaryInfo;
onCreateCellSummary: () => InternalRedux.CreateCellSummaryInfoAction;
}
declare class CellSummaryPopupComponent extends React.Component<CellSummaryPopupProps, EditableConfigEntityState> {
componentDidMount(): void;
render(): React.JSX.Element;
}
export declare let CellSummaryPopup: import("react-redux").ConnectedComponent<typeof CellSummaryPopupComponent, {
[x: string]: any;
}>;
export {};