Update summary.ts

This commit is contained in:
Acid Chicken (硫酸鶏)
2018-08-17 01:15:37 +09:00
committed by GitHub
parent eb97e0c67d
commit b1a091a4a6

View File

@ -20,19 +20,9 @@ type Summary = {
thumbnail: string;
/**
* The url of the player of that web page
* The player of that web page
*/
player: string;
/**
* The width of the player of that web page
*/
playerWidth: number;
/**
* The height of the player of that web page
*/
playerHeight: number;
player: Player;
/**
* The title of that web page
@ -41,3 +31,22 @@ type Summary = {
};
export default Summary;
type Player = {
/**
* The url of the player
*/
player: string;
/**
* The width of the player
*/
playerWidth: number;
/**
* The height of the player
*/
playerHeight: number;
};
export default Player;