15 lines
460 B
TypeScript
15 lines
460 B
TypeScript
interface VideoElem {
|
|
videoUUID:string; // 唯一 ID
|
|
videoPath:string; // 本地资源地址
|
|
videoType:string; // 资源类型
|
|
videoSize:number; // 大小
|
|
duration:number; // 时长
|
|
videoUrl:string; // 图片地址
|
|
snapshotUUID:string; // 唯一 ID
|
|
snapshotPath:string; // 类型
|
|
snapshotSize:number; // 大小
|
|
snapshotWidth:number; // 宽度
|
|
snapshotHeight:number; // 高度
|
|
snapshotUrl:string; // 视频缩略图地址
|
|
}
|
|
export default VideoElem; |