This commit is contained in:
Snowflake107 2021-05-09 22:13:18 +05:45
parent 6605cc9f6f
commit 0a173d73c9

View file

@ -1,8 +1,8 @@
import Player from "../Player";
class Playlist {
export class Playlist {
player: Player;
constructor(player: Player, data: any) {
Object.defineProperty(this, "player", { value: player });
}