ohctechv3/.svn/pristine/c5/c5a594c4a97466eb7278badad2aeceb030588c1c.svn-base

25 lines
731 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
import { CellCtrl, UserCompDetails } from 'ag-grid-community';
import React from 'react';
import { CellEditorComponentProxy } from '../../shared/customComp/cellEditorComponentProxy';
export declare enum CellCompState {
ShowValue = 0,
EditValue = 1
}
export interface RenderDetails {
compDetails: UserCompDetails | undefined;
value?: any;
force?: boolean;
}
export interface EditDetails {
compDetails: UserCompDetails;
popup?: boolean;
popupPosition?: 'over' | 'under';
compProxy?: CellEditorComponentProxy;
}
declare const _default: React.MemoExoticComponent<(props: {
cellCtrl: CellCtrl;
printLayout: boolean;
editingRow: boolean;
}) => React.JSX.Element>;
export default _default;