( storeOrStoreId?: StoreOrStoreId, then?: (store: Store) => void, thenDeps?: DependencyList, )
| 1095 | ); |
| 1096 | |
| 1097 | export const useDelTablesCallback: typeof useDelTablesCallbackDecl = ( |
| 1098 | storeOrStoreId?: StoreOrStoreId, |
| 1099 | then?: (store: Store) => void, |
| 1100 | thenDeps?: DependencyList, |
| 1101 | ): Callback => useDel(storeOrStoreId, TABLES, then, thenDeps); |
| 1102 | |
| 1103 | export const useDelTableCallback: typeof useDelTableCallbackDecl = <Parameter>( |
| 1104 | tableId: Id | GetId<Parameter>, |