| 1109 | useDel(storeOrStoreId, TABLE, then, thenDeps, tableId); |
| 1110 | |
| 1111 | export const useDelRowCallback: typeof useDelRowCallbackDecl = <Parameter>( |
| 1112 | tableId: Id | GetId<Parameter>, |
| 1113 | rowId: Id | GetId<Parameter>, |
| 1114 | storeOrStoreId?: StoreOrStoreId, |
| 1115 | then?: (store: Store) => void, |
| 1116 | thenDeps?: DependencyList, |
| 1117 | ): ParameterizedCallback<Parameter> => |
| 1118 | useDel(storeOrStoreId, ROW, then, thenDeps, tableId, rowId); |
| 1119 | |
| 1120 | export const useDelCellCallback: typeof useDelCellCallbackDecl = <Parameter>( |
| 1121 | tableId: Id | GetId<Parameter>, |