UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

16 lines (15 loc) 321 B
import { User } from "./user.entity"; export declare class Otp { id: number; userId: number; otp: string; otpPurpose: string; target: string; fallbackTarget: string; expiresAt: Date; isUsed: boolean; isVerified: boolean; resendCount: number; createdAt: Date; user: User; }