HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-10-0-8-47 6.8.0-1021-aws #23~22.04.1-Ubuntu SMP Tue Dec 10 16:31:58 UTC 2024 aarch64
User: ubuntu (1000)
PHP: 8.1.2-1ubuntu2.22
Disabled: NONE
Upload Files
File: //var/www/api.javaapp.co.uk/node_modules/@types/validator/lib/isIBAN.d.ts
export const locales: Array<
    | "AD"
    | "AE"
    | "AL"
    | "AT"
    | "AZ"
    | "BA"
    | "BE"
    | "BG"
    | "BH"
    | "BR"
    | "BY"
    | "CH"
    | "CR"
    | "CY"
    | "CZ"
    | "DE"
    | "DK"
    | "DO"
    | "EE"
    | "EG"
    | "ES"
    | "FI"
    | "FO"
    | "FR"
    | "GB"
    | "GE"
    | "GI"
    | "GL"
    | "GR"
    | "GT"
    | "HR"
    | "HU"
    | "IE"
    | "IL"
    | "IQ"
    | "IR"
    | "IS"
    | "IT"
    | "JO"
    | "KW"
    | "KZ"
    | "LB"
    | "LC"
    | "LI"
    | "LT"
    | "LU"
    | "LV"
    | "MC"
    | "MD"
    | "ME"
    | "MK"
    | "MR"
    | "MT"
    | "MU"
    | "MZ"
    | "NL"
    | "NO"
    | "PK"
    | "PL"
    | "PS"
    | "PT"
    | "QA"
    | "RO"
    | "RS"
    | "SA"
    | "SC"
    | "SE"
    | "SI"
    | "SK"
    | "SM"
    | "SV"
    | "TL"
    | "TN"
    | "TR"
    | "UA"
    | "VA"
    | "VG"
    | "XK"
>;

export interface IsIBANOptions {
    /**
     * @default undefined
     */
    whitelist?: typeof locales | undefined;
    /**
     * @default undefined
     */
    blacklist?: typeof locales | undefined;
}

/**
 * Check if a string is a IBAN (International Bank Account Number).
 */
export default function isIBAN(str: string, options?: IsIBANOptions): boolean;