UNPKG

518 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_BIC = "isBIC";
3/**
4 * Check if a string is a BIC (Bank Identification Code) or SWIFT code.
5 * If given value is not a string, then it returns false.
6 */
7export declare function isBIC(value: unknown): boolean;
8/**
9 * Check if a string is a BIC (Bank Identification Code) or SWIFT code.
10 * If given value is not a string, then it returns false.
11 */
12export declare function IsBIC(validationOptions?: ValidationOptions): PropertyDecorator;