ibankit
Version:
Validation, field extraction and creation of IBAN, BBAN, BIC numbers
12 lines (11 loc) • 321 B
TypeScript
import { CountryCode } from "./country";
export declare class BIC {
private value;
constructor(bic: string);
getBankCode(): string;
getCountryCode(): CountryCode | null;
getLocationCode(): string;
getBranchCode(): string | null;
toString(): string;
static isValid(bic: string): boolean;
}