14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
interface ISubtitle {
|
|
$: {
|
|
title: string;
|
|
wrap_style: string;
|
|
play_res_x: string;
|
|
play_res_y: string;
|
|
id: string;
|
|
lang_string: string;
|
|
created: string;
|
|
};
|
|
events: ISubtitleEvent;
|
|
styles: ISubtitleStyle;
|
|
}
|