UNPKG

605 BTypeScriptView Raw
1// ag-grid-react v26.2.0
2import { CellCtrl, UserCompDetails } from 'ag-grid-community';
3import React from 'react';
4export declare enum CellCompState {
5 ShowValue = 0,
6 EditValue = 1
7}
8export interface RenderDetails {
9 compDetails: UserCompDetails | undefined;
10 value?: any;
11 force?: boolean;
12}
13export interface EditDetails {
14 compDetails: UserCompDetails;
15 popup?: boolean;
16 popupPosition?: string;
17}
18declare const _default: React.MemoExoticComponent<(props: {
19 cellCtrl: CellCtrl;
20 printLayout: boolean;
21 editingRow: boolean;
22}) => JSX.Element>;
23export default _default;