class-validator
Version:
Decorator-based property validation for classes.
13 lines (12 loc) • 487 B
TypeScript
import { ValidationOptions } from '../ValidationOptions';
export declare const IS_CREDIT_CARD = "isCreditCard";
/**
* Checks if the string is a credit card.
* If given value is not a string, then it returns false.
*/
export declare function isCreditCard(value: unknown): boolean;
/**
* Checks if the string is a credit card.
* If given value is not a string, then it returns false.
*/
export declare function IsCreditCard(validationOptions?: ValidationOptions): PropertyDecorator;