UNPKG

@kitstack/nest-powertools

Version:

A comprehensive collection of NestJS powertools, decorators, and utilities to supercharge your backend development

9 lines (8 loc) 268 B
export declare class ValidationHelper { static validateEmail(email: string): boolean; static validatePassword(password: string): { valid: boolean; errors: string[]; }; static throwIfInvalid(condition: boolean, message: string): void; }