@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
17 lines (16 loc) • 372 B
TypeScript
declare enum SendGuestOtpPurposeEnum {
SIGN_UP = "SIGN_UP",
LOGIN = "LOGIN"
}
declare enum SendGuestOtpScopeEnum {
CLIENT = "CLIENT",
FREELANCER = "FREELANCER"
}
export declare class SendGuestOtpDto {
fullName: string;
target: string;
fallbackTarget: string;
purpose: SendGuestOtpPurposeEnum;
scope: SendGuestOtpScopeEnum;
}
export {};