UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

14 lines (13 loc) 297 B
declare enum SendLoginOtpPurposeEnum { LOGIN = "LOGIN" } declare enum SendLoginOtpScopeEnum { CLIENT = "CLIENT", FREELANCER = "FREELANCER" } export declare class SendLoginOtpDto { target: string; purpose: SendLoginOtpPurposeEnum; scope: SendLoginOtpScopeEnum; } export {};