( tableId: MaybeAccessor<Id> | GetId<Parameter>, rowId: MaybeAccessor<Id> | GetId<Parameter>, cellId: MaybeAccessor<Id> | GetId<Parameter>, getCell: (parameter: Parameter, store: Store) => Cell | MapCell, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store, cell: Cell | MapCell) => void, )
| 813 | ); |
| 814 | |
| 815 | export const useSetCellCallback = <Parameter>( |
| 816 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
| 817 | rowId: MaybeAccessor<Id> | GetId<Parameter>, |
| 818 | cellId: MaybeAccessor<Id> | GetId<Parameter>, |
| 819 | getCell: (parameter: Parameter, store: Store) => Cell | MapCell, |
| 820 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 821 | then?: (store: Store, cell: Cell | MapCell) => void, |
| 822 | ): ParameterizedCallback<Parameter> => |
| 823 | useStoreSetCallback( |
| 824 | storeOrStoreId, |
| 825 | CELL, |
| 826 | getCell, |
| 827 | then, |
| 828 | tableId, |
| 829 | rowId, |
| 830 | cellId, |
| 831 | ); |
| 832 | |
| 833 | export const useSetValuesCallback = <Parameter>( |
| 834 | getValues: (parameter: Parameter, store: Store) => Values, |
searching dependent graphs…