import type { CourseGradeDetailBlock } from './CourseGradeDetailBlock'; export type CourseGradeDetailSubSection = { /** * Block name */ display_name: string; /** * Block Id */ id: string; /** * Total users who have attempted it */ attempts?: string; /** * Average block value */ average: string; /** * Problems in section */ problems?: Array; };