UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

10 lines (9 loc) 271 B
import { BaseEntity } from "./base.entity"; import { AdminRole } from "./admin-role.entity"; import { User } from "./user.entity"; export declare class AdminUserRole extends BaseEntity { userId: number; user: User; roleId: number; adminRole: AdminRole; }