interface GridEditCellProps<V> {
    changeReason?: "debouncedSetEditCellValue" | "setEditCellValue";
    isProcessingProps?: boolean;
    isValidating?: boolean;
    value?: V;
    [prop: string]: any;
}

Type Parameters

  • V = any

Hierarchy (view full)

Indexable

  • [prop: string]: any

Properties

changeReason?: "debouncedSetEditCellValue" | "setEditCellValue"
isProcessingProps?: boolean
isValidating?: boolean
value?: V