视频信息

interface Video {
    duration: number;
    height: number;
    image: {
        format: string;
        picUrl: string;
        thumbnailUrl: string;
    };
    type: "VIDEO";
    width: number;
}

Properties

duration: number
height: number
image: {
    format: string;
    picUrl: string;
    thumbnailUrl: string;
}
type
width: number