From 0c411d9a40b8c3591160e2d6d5923788014bed4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Fri, 17 Aug 2018 01:16:49 +0900 Subject: [PATCH] Update summary.ts --- src/summary.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/summary.ts b/src/summary.ts index 1189658..e51d410 100644 --- a/src/summary.ts +++ b/src/summary.ts @@ -36,17 +36,17 @@ type Player = { /** * The url of the player */ - player: string; + url: string; /** * The width of the player */ - playerWidth: number; + width: number; /** * The height of the player */ - playerHeight: number; + height: number; }; export default Player;