jb-payment-input
Version:
payment input web component
19 lines • 667 B
TypeScript
import { JBDictionary } from 'jb-core/i18n';
export type JBPaymentInputDictionary = {
cardLengthValidation: string;
IBANLengthValidation: string;
IBANFullValidation: string;
};
/**
* dictionary of jb payment input. it's already loaded with persian and english lang but you can also extend it with you apps other language or replace already exist language
* @example
* ```js
* import {dictionary} from 'jb-payment-input'
* dictionary.setLanguage("fr", {
* paymentValidation: "message in french",
* // other dictionary keys
* });
* ```
*/
export declare const dictionary: JBDictionary<JBPaymentInputDictionary>;
//# sourceMappingURL=i18n.d.ts.map