jb-payment-input
Version:
payment input web component
19 lines • 492 B
TypeScript
import type { JBPaymentInputWebComponent } from 'jb-payment-input';
export type BankIndicatorElements = {
bankImageWrapper: HTMLDivElement;
PaymentInputParent: JBPaymentInputWebComponent | null;
};
type HEX = `#${string}`;
export type BankItem = {
title: {
fa: string;
en: string;
};
prefix: string[];
logo: string;
color: HEX;
primary: HEX;
};
export type BankInfo = BankItem[];
export {};
//# sourceMappingURL=types.d.ts.map