UNPKG

@thunderstorefront/api-mock

Version:

Create Nuxt extendable layer with this GitHub template.

10 lines (8 loc) 245 B
import { faker } from '@faker-js/faker'; import type { Wishlist } from '@thunderstorefront/types'; // Mock for Wishlist export const mockWishlist = (): Wishlist => ({ id: faker.string.uuid(), itemsCount: faker.number.int(), items: [] });