@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.
18 lines (16 loc) • 446 B
TypeScript
import { TestCard } from './test-card';
type Props = {
container: HTMLDivElement;
testCardContainer: HTMLDivElement;
};
export declare class MainFooter {
container: HTMLDivElement;
testCardContainer: HTMLDivElement;
testCardInstance: TestCard | null;
isVisible: boolean;
constructor({ container, testCardContainer }: Props);
attachListener(): void;
renderComponent(): void;
render(): string;
}
export {};