import type { VideoBlock } from './VideoBlock'; export type VideosWatchedSubSection = { /** * Subsection name */ display_name: string; /** * Subsection Id */ id: string; /** * Total videos watched. N/A if no record found */ total_watch: string; /** * Videos */ videos?: Array; };