export interface ISubtitle { /** * Start Time to display the subtitle */ start: string; /** * Duration to display the subtitle */ dur: string; /** * The plain text subtitle */ text: string; /** * the html subtitle */ htmlText: string; }