UNPKG

@alisdigital/types-library

Version:

TypeScript type definitions for Papilet ecosystem with session soft delete and event management features

10 lines (9 loc) 217 B
import { RoleType } from "../enum/role.enum"; export interface IUserUpsertRequest { name: string; email: string; password: string; phoneNumber: string; isActive?: boolean; roles: RoleType[]; }