@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.
15 lines (14 loc) • 508 B
TypeScript
export declare const formatNumber: (val: any, dp?: number) => string;
export declare function isNumeric(str: string): boolean;
export declare const getDecimalFormat: (val: number) => number;
export declare const formatWholeDecimal: (value: number) => {
wholeNumber: string;
decimal: number;
};
export declare function formatNumberInFormat(num: number): string;
export declare const CurrenctObject: {
readonly USD: "$";
readonly EUR: "€";
readonly GBP: "£";
readonly NGN: "₦";
};