export type CourseCompletionSummaryDataOvertime = { /** * Dates are keys and values are the value for the date in the key. e,g `{"2020-01-01": 30. ...}` */ overtime?: Record; /** * Total unique active users in this period */ total_user_count: number; /** * Total course completions */ completed_count: number; /** * Completion percent for the time range */ completed_percent: number; };