工匠基地官方网站
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
383 B

export interface VideoInfo {
url: string;
}
export interface Video {
poster: string;
name: string;
}
export interface MovieVideo {
id: number;
title: string;
cover: string;
video: Video;
}
export interface MovieVideoInfo {
movieId: number;
typeId: string;
title: string;
movie: MovieItem;
country: Item[];
videoInfo: VideoInfo;
videos: MovieVideo[];
}