( getTables: (parameter: Parameter, store: Store) => Tables, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store, tables: Tables) => void, )
| 741 | ]; |
| 742 | |
| 743 | export const useSetTablesCallback = <Parameter>( |
| 744 | getTables: (parameter: Parameter, store: Store) => Tables, |
| 745 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 746 | then?: (store: Store, tables: Tables) => void, |
| 747 | ): ParameterizedCallback<Parameter> => |
| 748 | useStoreSetCallback(storeOrStoreId, TABLES, getTables, then); |
| 749 | |
| 750 | export const useSetTableCallback = <Parameter>( |
| 751 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
searching dependent graphs…