import type { CoursePoint } from './CoursePoint'; import type { ResourcePoint } from './ResourcePoint'; import type { Skill } from './Skill'; export type UserSkill = { skill: Skill; /** * Courses with skill and associated points */ courses: Array; /** * Resources with skill and associated points */ resources: Array; /** * Total points for skill */ readonly total_points: number; /** * Percentile of points for user. */ percentile?: number; };