@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.
16 lines (15 loc) • 377 B
TypeScript
type Props = {
container: HTMLDivElement;
onClose: () => void;
onAction: (_val: number) => void;
};
export declare class TransferConfirmationTwo {
container: HTMLDivElement;
onClose: () => void;
onAction: (_val: number) => void;
constructor(props: Props);
attachListeners(): void;
renderComponent(): void;
render(): string;
}
export {};