( tableId: MaybeAccessor<Id> | GetId<Parameter>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store) => void, )
| 858 | ): Callback => useDel(storeOrStoreId, TABLES, then); |
| 859 | |
| 860 | export const useDelTableCallback = <Parameter>( |
| 861 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
| 862 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 863 | then?: (store: Store) => void, |
| 864 | ): ParameterizedCallback<Parameter> => |
| 865 | useDel(storeOrStoreId, TABLE, then, tableId); |
| 866 | |
| 867 | export const useDelRowCallback = <Parameter>( |
| 868 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |