export const fetchCourseProgressionStatistics =
  async (): Promise<CourseProgressionStatistics> => {
    const response =
      await CourseAPI.statistics.course.fetchCourseProgressionStatistics();
    return response.data;