@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.
44 lines (42 loc) • 819 B
TypeScript
import { RegionDetail } from './types';
export declare const TAB_OPTION_OBJECT: {
card: {
key: string;
label: string;
icon: string;
};
bank_transfer: {
key: string;
label: string;
icon: string;
};
ussd: {
key: string;
label: string;
icon: string;
};
mobile_money: {
key: string;
label: string;
icon: string;
};
eft: {
key: string;
label: string;
icon: string;
};
};
export declare const tabOptions: {
label: string;
icon: string;
key: string;
}[];
export declare const banks: {
name: string;
code: string;
}[];
export declare const cardTypes: {
name: string;
icon: string;
}[];
export declare const regionDetails: RegionDetail[];