class-validator
Version:
Decorator-based property validation for classes.
13 lines (12 loc) • 518 B
TypeScript
import { ValidationOptions } from '../ValidationOptions';
export declare const IS_BIC = "isBIC";
/**
* Check if a string is a BIC (Bank Identification Code) or SWIFT code.
* If given value is not a string, then it returns false.
*/
export declare function isBIC(value: unknown): boolean;
/**
* Check if a string is a BIC (Bank Identification Code) or SWIFT code.
* If given value is not a string, then it returns false.
*/
export declare function IsBIC(validationOptions?: ValidationOptions): PropertyDecorator;