desi-mongoose
Version:
A fun and intuitive MongoDB ODM for Node.js with a Hinglish twist
8 lines (7 loc) • 316 B
TypeScript
export declare class DesiValidator {
static jaruri: (value: any) => boolean;
static email: (value: string) => boolean;
static mobile: (value: string) => boolean;
static minLength: (length: number) => (value: string) => boolean;
static maxLength: (length: number) => (value: string) => boolean;
}