@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
13 lines (12 loc) • 330 B
TypeScript
export declare enum SendLoginOtpPurposeEnum {
ACCOUNT_VERIFICATION = "ACCOUNT_VERIFICATION"
}
export declare enum SendLoginOtpScopeEnum {
CLIENT = "CLIENT",
FREELANCER = "FREELANCER"
}
export declare class SendLoginOtpDto {
target: string;
purpose: SendLoginOtpPurposeEnum;
scope: SendLoginOtpScopeEnum;
}