UNPKG

@vendasta/store

Version:

Components and data for Store

25 lines (24 loc) 650 B
import { ResellerItem } from '../..'; export interface ProductInformation { appId?: string; addonId?: string; name?: string; tagline?: string; icon?: string; stats?: ProductStats; change?: ProductStats; growth?: number; addons?: ProductInformation[]; sellingInStore?: boolean; expanded?: boolean; } export interface ProductStats { activations?: number; deactivations?: number; cancellations?: number; } export interface ProductStatsWithId extends ProductStats { appId: string; editionId: string; } export declare function getMarketplaceRouterLink(product: ResellerItem): string | null;