UNPKG

@vendasta/store

Version:

Components and data for Store

24 lines (23 loc) 526 B
import { File } from '../files/shared/file.model'; import { Faq } from '../faqs/shared/faqs.model'; export interface StoreLineItem { item: Item; parent: DisplayItem; quantity: number; } interface DisplayItem { id: string; editionId: string; icon: string; name: string; editionName: string; } interface Item extends DisplayItem { lmiCategories: string[]; description: string; keySellingPoints: string[]; faqs: Faq[]; screenshotUrls: string[]; files: File[]; } export {};