UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

12 lines (11 loc) 217 B
declare enum ScopeEnum { ADMIN = "ADMIN", CLIENT = "CLIENT", FREELANCER = "FREELANCER" } export declare class ResetPasswordDto { token: string; password: string; scope: ScopeEnum; } export {};