@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.
22 lines (21 loc) • 552 B
TypeScript
type ThreeDSecureDetails = {
jwt: string;
md: string;
acsUrl: string;
};
type Props = {
container: HTMLDivElement;
threeDSecureDetails: ThreeDSecureDetails;
onAction: (_val: number) => void;
onSuccess: () => void;
};
export declare class ISW3DSForm {
container: HTMLDivElement;
threeDSecureDetails: ThreeDSecureDetails;
private onAction;
private onSuccess;
constructor({ container, threeDSecureDetails, onAction, onSuccess }: Props);
attachListener(): void;
renderComponent(): void;
}
export {};