UNPKG

nestjs-auth-kit

Version:

A modular and flexible authentication kit for NestJS with JWT, social login, OTP, and password reset.

11 lines (10 loc) 225 B
import { OtpEntity } from './otp.entity'; export declare class User { id?: string; firstName?: string; lastName?: string; email?: string; password?: string; roles?: string[]; otps?: OtpEntity[]; }