UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

8 lines (7 loc) 201 B
import { BaseEntity } from "./base.entity"; import { User } from "./user.entity"; export declare class FreelancerSkill extends BaseEntity { userId: number; user: User; skillName: string; }