@vendasta/store
Version:
Components and data for Store
18 lines (17 loc) • 429 B
TypeScript
export interface Pricing {
currency: string;
prices: Price[];
setupFee?: number;
usesCustomPricing?: boolean;
totalPriceInDollars?: number;
totalStorePriceInDollars?: number;
}
export interface Price {
price: number;
frequency: string;
isStartingPrice?: boolean;
priceInDollars?: number;
formattedFrequency?: string;
storePrice?: number;
}
export declare const CONTACT_SALES = -1;