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;