UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

11 lines (10 loc) 283 B
import { BaseEntity } from "./base.entity"; import { User } from "./user.entity"; export declare class FreelancerExperience extends BaseEntity { userId: number; user: User; companyName: string; designation: string; jobDuration: string; description: string; }