UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

15 lines (14 loc) 391 B
import { BaseEntity } from './base.entity'; export declare class SkillCatalog extends BaseEntity { canonicalName: string; aliases: string[]; variations: Record<string, number>; category: string; parentSkill: string; relatedSkills: string[]; usageCount: number; isVerified: boolean; firstSeenDate: Date; lastUpdatedDate: Date; searchVector: any; }