UNPKG

427 BTypeScriptView Raw
1import { Pricing } from './pricing/pricing';
2import { Categories } from '@vendasta/core/marketplace-packages';
3export declare type CategoryToItemListMap = Map<string, StoreItem[]>;
4export interface StoreItem {
5 name: string;
6 tagline: string;
7 headerImageUrl: string;
8 iconUrl: string;
9 formattedPrice: string;
10 purchased?: boolean;
11 id?: string;
12 pricing?: Pricing;
13 lmiCategories?: Categories[];
14}