UNPKG

@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.

26 lines (24 loc) 655 B
import { PaymentResponseData } from '../../types/types'; type Props = { container: HTMLDivElement; onAction: (_val: number) => void; ref: string; token: string; rdtCode?: string; url?: string; callBackUrl: string; paymentResponse: PaymentResponseData; paymentResponseHeaders: Headers; }; export declare class TransferConfirmationEnd { container: HTMLDivElement; onAction: (_val: number) => void; private callBackUrl; private paymentResponse; private paymentResponseHeaders; constructor(props: Props); attachListeners(): void; renderComponent(): void; render(): string; } export {};