( tableId: Id | GetId<Parameter>, rowId: Id | GetId<Parameter>, cellId: Id | GetId<Parameter>, getCell: (parameter: Parameter, store: Store) => Cell | MapCell, getCellDeps?: DependencyList, storeOrStoreId?: StoreOrStoreId, then?: (store: Store, cell: Cell | MapCell) => void, thenDeps?: DependencyList, )
| 1020 | ); |
| 1021 | |
| 1022 | export const useSetCellCallback: typeof useSetCellCallbackDecl = <Parameter>( |
| 1023 | tableId: Id | GetId<Parameter>, |
| 1024 | rowId: Id | GetId<Parameter>, |
| 1025 | cellId: Id | GetId<Parameter>, |
| 1026 | getCell: (parameter: Parameter, store: Store) => Cell | MapCell, |
| 1027 | getCellDeps?: DependencyList, |
| 1028 | storeOrStoreId?: StoreOrStoreId, |
| 1029 | then?: (store: Store, cell: Cell | MapCell) => void, |
| 1030 | thenDeps?: DependencyList, |
| 1031 | ): ParameterizedCallback<Parameter> => |
| 1032 | useStoreSetCallback( |
| 1033 | storeOrStoreId, |
| 1034 | CELL, |
| 1035 | getCell, |
| 1036 | getCellDeps, |
| 1037 | then, |
| 1038 | thenDeps, |
| 1039 | tableId, |
| 1040 | rowId, |
| 1041 | cellId, |
| 1042 | ); |
| 1043 | |
| 1044 | export const useSetValuesCallback: typeof useSetValuesCallbackDecl = < |
| 1045 | Parameter, |
searching dependent graphs…