UNPKG

@craynic/czech-iban

Version:

Library to enable working with Czech IBANs and local bank account identifiers

14 lines (13 loc) 399 B
export declare class CzechIBAN { static IBANCountryCode: string; readonly IBAN: string; constructor(IBAN: string); get bankCode(): string; get accountPrefix(): string; get accountSuffix(): string; get bankName(): string; get BIC(): string | undefined; static fromNationalString(input: string): CzechIBAN; toString(): string; toNationalString(): string; }