@inceptionbg/main 2.0.109 → 2.0.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1496,10 +1496,12 @@ declare const DeleteItemDialog: FC<Props$1>;
|
|
|
1496
1496
|
|
|
1497
1497
|
interface Props {
|
|
1498
1498
|
textId: string;
|
|
1499
|
-
|
|
1500
|
-
|
|
1499
|
+
itemUuids: string[];
|
|
1500
|
+
setItemUuids: Dispatch<SetStateAction<string[]>>;
|
|
1501
1501
|
onSuccess: () => void;
|
|
1502
|
-
useDeleteItemMutation: ({ onSuccess, }: IUseMutationData) => UseMutationResult<AxiosResponse<any, any>, Error,
|
|
1502
|
+
useDeleteItemMutation: ({ onSuccess, }: IUseMutationData) => UseMutationResult<AxiosResponse<any, any>, Error, {
|
|
1503
|
+
itemUuids: string[];
|
|
1504
|
+
}, unknown>;
|
|
1503
1505
|
}
|
|
1504
1506
|
declare const DeleteItemsDialog: FC<Props>;
|
|
1505
1507
|
|