bluechip-utils
Version:
Utitity function package for javsacript and Typescript
8 lines (7 loc) • 583 B
TypeScript
export declare const validateRequiredStringProperty: (label: string, property: any) => void;
export declare const validateRequiredProperty: (label: string, property: any) => void;
export declare const validateRequiredDateProperty: (label: string, property: any) => void;
export declare const validateRequiredNumericProperty: (label: string, property: any) => void;
export declare const validateIfArray: (label: string, arrayProspect: any) => void;
export declare const validateEmailAddress: (email: string) => void;
export declare const validatePhoneNumber: (phone: string) => void;