import type { ProductEntityDenormalized } from './product.types.js'; import type { WishlistSet, WishlistSetItem } from '@farfetch/blackout-client'; export type WishlistSetEntity = Omit & { id: WishlistSet['setId']; }; export type WishlistSetEntities = Record; export type WishlistSetItemDenormalized = WishlistSetItem & { product: ProductEntityDenormalized | undefined; }; export type WishlistSetDenormalized = Omit & { wishlistSetItems: Array; }; export type WishlistSetsDenormalized = Array | undefined;