@rxap/forms
Version:
This package provides a set of tools and directives to simplify working with Angular forms, including reactive forms, custom validators, and form directives for handling loading, submitting, and error states. It offers decorators for defining forms and co
33 lines (32 loc) • 1.07 kB
TypeScript
import { IsArray } from './is-array';
import { IsBoolean } from './is-boolean';
import { IsComplex } from './is-complex';
import { IsDate } from './is-date';
import { IsEmail } from './is-email';
import { IsEnum } from './is-enum';
import { IsInt } from './is-int';
import { IsIP } from './is-ip';
import { _IsNumber as IsNumber } from './is-number';
import { IsObject } from './is-object';
import { IsPhoneNumber } from './is-phone-number';
import { IsPort } from './is-port';
import { IsString } from './is-string';
import { IsUrl } from './is-url';
import { IsUUID } from './is-uuid';
export declare const RxapValidators: {
IsNumber: typeof IsNumber;
IsBoolean: typeof IsBoolean;
IsArray: typeof IsArray;
IsDate: typeof IsDate;
IsEnum: typeof IsEnum;
IsInt: typeof IsInt;
IsObject: typeof IsObject;
IsString: typeof IsString;
IsComplex: typeof IsComplex;
IsPhoneNumber: typeof IsPhoneNumber;
IsEmail: typeof IsEmail;
IsUrl: typeof IsUrl;
IsIP: typeof IsIP;
IsPort: typeof IsPort;
IsUUID: typeof IsUUID;
};