@vendasta/store
Version:
Components and data for Store
24 lines (23 loc) • 692 B
TypeScript
import { EventEmitter } from '@angular/core';
import { Pricing } from '../pricing';
export declare class VaHeaderContainerComponent {
iconUrl: string;
title: string;
tagline: string;
prerequisite: string;
chipLabels: string[];
pricing: Pricing;
pricingLabel: string;
pricingActionLabel: string;
pricingActionEnabled: boolean;
actionEnabled: boolean;
actionLabel: string;
showAction: boolean;
showPricing: boolean;
prerequisiteLabel: string;
prerequisiteSelected: EventEmitter<{}>;
actionSelected: EventEmitter<{}>;
pricingActionSelected: EventEmitter<{}>;
onActionSelected(): void;
onPrerequisiteSelected(): void;
}