UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

11 lines (10 loc) 196 B
declare enum ScopeEnum { ADMIN = "ADMIN", CLIENT = "CLIENT", FREELANCER = "FREELANCER" } export declare class ForgotPasswordDto { email: string; scope: ScopeEnum; } export {};