@malga-checkout-full/angular
Version:
Angular specific wrapper for Malga Checkout Full core components
18 lines (17 loc) • 579 B
TypeScript
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
import { Components } from '@malga-checkout-full/core';
export declare interface MalgaCheckoutFull extends Components.MalgaCheckoutFull {
}
export declare class MalgaCheckoutFull {
protected z: NgZone;
/** */
transactionSuccess: EventEmitter<CustomEvent<{
data: unknown;
}>>;
/** */
transactionFailed: EventEmitter<CustomEvent<{
error: unknown;
}>>;
protected el: HTMLElement;
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
}