@dazejs/framework
Version:
Daze.js - A powerful web framework for Node.js
66 lines (65 loc) • 4.84 kB
TypeScript
export declare const Passed: (options?: any) => PropertyDecorator;
export declare const Accepted: (options?: any) => PropertyDecorator;
export declare const Is: (comparison: any, options?: any) => PropertyDecorator;
export declare const Required: (options?: any) => PropertyDecorator;
export declare const Equals: (comparison: any, options?: any) => PropertyDecorator;
export declare const NotEquals: (comparison: any, options?: any) => PropertyDecorator;
export declare const IsEmpty: (options?: any) => PropertyDecorator;
export declare const IsNotEmpty: (options?: any) => PropertyDecorator;
export declare const IsDivisibleBy: (num: any, options?: any) => PropertyDecorator;
export declare const IsPositive: (options?: any) => PropertyDecorator;
export declare const IsNegative: (options?: any) => PropertyDecorator;
export declare const Min: (min: any, options?: any) => PropertyDecorator;
export declare const Max: (max: any, options?: any) => PropertyDecorator;
export declare const AfterDate: (date: any, options?: any) => PropertyDecorator;
export declare const BeforeDate: (date: any, options?: any) => PropertyDecorator;
export declare const IsBoolean: (options?: any) => PropertyDecorator;
export declare const IsDate: (options?: any) => PropertyDecorator;
export declare const IsString: (options?: any) => PropertyDecorator;
export declare const IsNumber: (options?: any) => PropertyDecorator;
export declare const IsArray: (options?: any) => PropertyDecorator;
export declare const IsError: (options?: any) => PropertyDecorator;
export declare const IsFunction: (options?: any) => PropertyDecorator;
export declare const IsBuffer: (options?: any) => PropertyDecorator;
export declare const IsObject: (options?: any) => PropertyDecorator;
export declare const IsRegExp: (options?: any) => PropertyDecorator;
export declare const IsSymbol: (options?: any) => PropertyDecorator;
export declare const IsNullOrUndefined: (options?: any) => PropertyDecorator;
export declare const IsNull: (options?: any) => PropertyDecorator;
export declare const IsUndefined: (options?: any) => PropertyDecorator;
export declare const IsDateString: (options?: any) => PropertyDecorator;
export declare const IsBooleanString: (options?: any) => PropertyDecorator;
export declare const IsNumberString: (options?: any) => PropertyDecorator;
export declare const Contains: (seed: any, options?: any) => PropertyDecorator;
export declare const NotContains: (seed: any, options?: any) => PropertyDecorator;
export declare const IsAlpha: (locale?: any, options?: any) => PropertyDecorator;
export declare const IsAlphanumeric: (locale?: any, options?: any) => PropertyDecorator;
export declare const IsAscii: (options?: any) => PropertyDecorator;
export declare const IsBase64: (options?: any) => PropertyDecorator;
export declare const IsByteLength: (min: any, max: any, options?: any) => PropertyDecorator;
export declare const IsCreditCard: (options?: any) => PropertyDecorator;
export declare const IsCurrency: (options?: any) => PropertyDecorator;
export declare const IsEmail: (options?: any) => PropertyDecorator;
export declare const IsFQDN: (options?: any) => PropertyDecorator;
export declare const IsFullWidth: (options?: any) => PropertyDecorator;
export declare const IsHalfWidth: (options?: any) => PropertyDecorator;
export declare const IsHexColor: (options?: any) => PropertyDecorator;
export declare const IsHexadecimal: (options?: any) => PropertyDecorator;
export declare const IsIP: (version?: any, options?: any) => PropertyDecorator;
export declare const IsISBN: (version?: any, options?: any) => PropertyDecorator;
export declare const IsISSN: (options?: any) => PropertyDecorator;
export declare const IsISIN: (options?: any) => PropertyDecorator;
export declare const IsISO8601: (options?: any) => PropertyDecorator;
export declare const IsJSON: (options?: any) => PropertyDecorator;
export declare const IsLowercase: (options?: any) => PropertyDecorator;
export declare const IsMobilePhone: (locale?: any, options?: any) => PropertyDecorator;
export declare const IsMongoId: (options?: any) => PropertyDecorator;
export declare const IsMultibyte: (options?: any) => PropertyDecorator;
export declare const IsSurrogatePair: (options?: any) => PropertyDecorator;
export declare const IsURL: (options?: any) => PropertyDecorator;
export declare const IsUUID: (version?: any, options?: any) => PropertyDecorator;
export declare const IsUppercase: (options?: any) => PropertyDecorator;
export declare const Length: (min: any, max: any, options?: any) => PropertyDecorator;
export declare const MinLength: (min: any, options?: any) => PropertyDecorator;
export declare const MaxLength: (max: any, options?: any) => PropertyDecorator;
export declare const Matches: (pattern: any, modifiers?: any, options?: any) => PropertyDecorator;