UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

17 lines (16 loc) 336 B
declare enum AccountType { ADMIN = "ADMIN", SUB_ADMIN = "SUB_ADMIN" } export declare class UpdateSubAdminDto { userName: string; firstName: string; lastName: string; accountType: AccountType; email: string; mobileCode: string; mobile: string; password?: string; roleIds: string; } export {};