UNPKG

primereact

Version:

A rich set of premium UI Components for React.

12 lines (11 loc) 493 B
export interface DataTableCellEditorContextValue { isEditing: boolean; field: string; rowIndex: number; handleClick: (event: React.MouseEvent) => void; handleKeyDown: (event: React.KeyboardEvent) => void; } export declare const DataTableCellEditorProvider: ({ value, children }: { value: DataTableCellEditorContextValue; children: React.ReactNode; }) => import("react").JSX.Element, useDataTableCellEditorContext: () => DataTableCellEditorContextValue | undefined;