UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

15 lines 499 B
import { default as React } from 'react'; import { ColumnDef } from '../../types'; import { DataGridStyles } from '../../../../theme'; interface EditableCellProps { column: ColumnDef; value: unknown; editingValue: string; onEditingValueChange: (value: string) => void; onSave: () => void; onCancel: () => void; styles?: DataGridStyles | undefined; } declare const EditableCell: React.FC<EditableCellProps>; export default EditableCell; //# sourceMappingURL=index.d.ts.map