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