( tableId: MaybeAccessor<Id> | GetId<Parameter>, getTable: (parameter: Parameter, store: Store) => Table, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store, table: Table) => void, )
| 748 | useStoreSetCallback(storeOrStoreId, TABLES, getTables, then); |
| 749 | |
| 750 | export const useSetTableCallback = <Parameter>( |
| 751 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
| 752 | getTable: (parameter: Parameter, store: Store) => Table, |
| 753 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 754 | then?: (store: Store, table: Table) => void, |
| 755 | ): ParameterizedCallback<Parameter> => |
| 756 | useStoreSetCallback(storeOrStoreId, TABLE, getTable, then, tableId); |
| 757 | |
| 758 | export const useSetRowCallback = <Parameter>( |
| 759 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
searching dependent graphs…