import AnimeNotifier from "./AnimeNotifier" export default class VideoPlayer { arn: AnimeNotifier constructor(arn: AnimeNotifier) { this.arn = arn } play(video: HTMLVideoElement) { } playPause() { } }