UNPKG

605 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2import { Product } from '../shared';
3import { Price } from '../pricing';
4import { Addon } from '@vendasta/core/marketplace-apps';
5export declare class VaProductDetailsComponent {
6 product: Product;
7 showActionButton: boolean;
8 showPricing: boolean;
9 enableClicked: EventEmitter<{}>;
10 addonSelected: EventEmitter<string>;
11 emitEnableButtonClicked(): void;
12 readonly addons: Addon[];
13 getActionLabel(): string;
14 readonly price: {
15 currency: string;
16 prices: Price[];
17 };
18 onAddonSelected(addonId: string): void;
19}