import type { WishlistItem } from './entities'; export interface WishlistRepository { load(): WishlistItem[]; save(items: WishlistItem[]): void; }