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.

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