@vendasta/store
Version:
Components and data for Store
12 lines (11 loc) • 424 B
TypeScript
import { Pricing } from '../pricing/pricing';
export declare class Sellable {
pricing: Pricing;
readonly isFree: boolean;
readonly shouldContactSales: boolean;
static getCapitalizeFirstLetter(inputString: string): string;
readonly formattedPricingList: string[];
readonly priceStrings: string[];
readonly formattedWholesalePrice: string;
static getCurrencySymbol(currency: string): string;
}