UNPKG

969 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2import { Pricing } from '../pricing';
3import { BilledProduct, BillingModel } from '@vendasta/core';
4export declare class VaHeaderContainerComponent {
5 iconUrl: string;
6 title: string;
7 tagline: string;
8 prerequisite: string;
9 chipLabels: string[];
10 pricing: Pricing;
11 billedProduct: BilledProduct;
12 loaded: boolean;
13 hasVerifiedContract: boolean;
14 pricingLabel: string;
15 pricingActionLabel: string;
16 pricingActionEnabled: boolean;
17 actionEnabled: boolean;
18 actionLabel: string;
19 showAction: boolean;
20 showPricing: boolean;
21 prerequisiteLabel: string;
22 prerequisiteSelected: EventEmitter<{}>;
23 actionSelected: EventEmitter<{}>;
24 pricingActionSelected: EventEmitter<{}>;
25 onActionSelected(): void;
26 onPrerequisiteSelected(): void;
27 showPricingModel(billedProduct: BilledProduct): boolean;
28 getPricingModelTooltips(billingModel: BillingModel): string;
29}