UNPKG

nestjs-auth-kit

Version:

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

12 lines (11 loc) 241 B
import { User } from './user.entity'; export declare class OtpEntity { id?: string; otpCode?: string; email?: string; expiresAt?: Date; isVerified?: boolean; user?: User; createdAt?: Date; updatedAt?: Date; }