import type { ContentAverages } from './ContentAverages'; import type { ContentTotals } from './ContentTotals'; import type { OvertimeDataPoint } from './OvertimeDataPoint'; /** * Serializer for content summary data. */ export type ContentSummary = { totals: ContentTotals; averages: ContentAverages; /** * Time spent over time data (courses only, when include_overtime=true) */ overtime?: Array; };