playable
Version:
Video player based on HTML5Video
19 lines (14 loc) • 293 B
text/typescript
interface ITimeoutMap {
[id: string]: number;
}
interface IReportType {
id: string;
timeoutTime: number;
}
interface IReportTypes {
[id: string]: IReportType;
}
interface IReportReasons {
[id: string]: string;
}
export { ITimeoutMap, IReportReasons, IReportType, IReportTypes };