UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

12 lines (11 loc) 241 B
declare enum ScopeEmailEnumDto { ADMIN = "ADMIN", SUB_ADMIN = "SUB_ADMIN", CLIENT = "CLIENT", FREELANCER = "FREELANCER" } export declare class ValidateEmailDto { email: string; scope?: ScopeEmailEnumDto; } export {};