@spot-flow/checkout-inline-js
Version:
This project is an inline library that enables users to make payments seamlessly. It integrates smoothly into your application, providing a streamlined checkout experience.
23 lines (21 loc) • 664 B
TypeScript
import { PaymentResponseData } from '../../types/types';
import { PageLoader } from '../shared/page-loader';
import { PaymentWarning } from '../shared/payment-warning';
type Props = {
container: HTMLElement;
onAction: () => Promise<void>;
restartTransactionProcess: () => void;
};
export declare class EftAuthenticate {
container: HTMLElement | Element;
payment: PaymentResponseData;
warningError: PaymentWarning;
pageLoader: PageLoader;
onAction: () => Promise<void>;
private restartTransactionProcess;
constructor(props: Props);
attachListener(): void;
renderComponent(): void;
render(): string;
}
export {};