import type { PathwayCompletion } from './PathwayCompletion'; import type { PathwayEnrollment } from './PathwayEnrollment'; export type PathwayDetail = { pathway_id: string; name?: string | null; platform?: string | null; enrollment: PathwayEnrollment; completion?: PathwayCompletion | null; };