UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

14 lines (13 loc) 277 B
declare enum LoginViaOtpScopeEnum { ADMIN = "ADMIN", SUB_ADMIN = "SUB_ADMIN", CLIENT = "CLIENT", FREELANCER = "FREELANCER" } export declare class LoginViaOtpDto { email: string; otp: string; scope: LoginViaOtpScopeEnum; ip: string; } export {};