import type { CourseGradeDetailSubSection } from './CourseGradeDetailSubSection'; export type CourseGradingDetailData = { /** * Chapter name */ display_name: string; /** * Chapter Id */ id: string; subsections?: Array; };