jb-payment-input
Version:
payment input web component
21 lines (20 loc) • 786 B
TypeScript
import { BankIndicatorElements, BankItem } from './types';
export * from './types';
export declare class BankIndicatorWebComponent extends HTMLElement {
#private;
elements: BankIndicatorElements;
bankInfo: import("./types").BankInfo;
get selectedBank(): BankItem | null;
set selectedBank(value: BankItem | null);
constructor();
connectedCallback(): void;
callOnLoadEvent(): void;
callOnInitEvent(): void;
initWebComponent(): void;
registerEventListener(): void;
initProp(): void;
static get observedAttributes(): string[];
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
onAttributeChange(name: string, value: string): void;
changeBank(prefix: string | null): void;
}