@vendasta/store
Version:
Components and data for Store
20 lines (19 loc) • 881 B
TypeScript
import { OnChanges, SimpleChanges } from '@angular/core';
import { Currency, Revenue, RevenuePeriod } from '@vendasta/sales-orders';
import * as i0 from "@angular/core";
export declare class SimplePriceDisplayComponent implements OnChanges {
currency: Currency;
currencyCode: string;
revenue: Revenue;
currencyString: string;
revenueComponents: {
isStartingRevenue: boolean;
value: number;
period: string;
}[];
ngOnChanges(changes: SimpleChanges): void;
getCurrency(): string;
getRevenuePeriod(period: RevenuePeriod): string;
static ɵfac: i0.ɵɵFactoryDeclaration<SimplePriceDisplayComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SimplePriceDisplayComponent, "app-simple-price-display", never, { "currency": "currency"; "currencyCode": "currencyCode"; "revenue": "revenue"; }, {}, never, never>;
}