Update summary.ts

This commit is contained in:
Acid Chicken (硫酸鶏) 2018-08-17 01:16:49 +09:00 committed by GitHub
parent b1a091a4a6
commit 0c411d9a40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,17 +36,17 @@ type Player = {
/** /**
* The url of the player * The url of the player
*/ */
player: string; url: string;
/** /**
* The width of the player * The width of the player
*/ */
playerWidth: number; width: number;
/** /**
* The height of the player * The height of the player
*/ */
playerHeight: number; height: number;
}; };
export default Player; export default Player;