UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

11 lines (10 loc) 219 B
declare enum VerifyGuestOtpPurposeEnum { SIGN_UP = "SIGN_UP", LOGIN = "LOGIN" } export declare class VerifyGuestOtpDto { target: string; otp: string; purpose: VerifyGuestOtpPurposeEnum; } export {};