UNPKG

514 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_IBAN = "isIBAN";
3/**
4 * Check if a string is a IBAN (International Bank Account Number).
5 * If given value is not a string, then it returns false.
6 */
7export declare function isIBAN(value: unknown): boolean;
8/**
9 * Check if a string is a IBAN (International Bank Account Number).
10 * If given value is not a string, then it returns false.
11 */
12export declare function IsIBAN(validationOptions?: ValidationOptions): PropertyDecorator;