17 lines
215 B
TypeScript
Raw Normal View History

2018-12-09 03:37:54 +00:00
import AnimeNotifier from "./AnimeNotifier"
export default class VideoPlayer {
arn: AnimeNotifier
constructor(arn: AnimeNotifier) {
this.arn = arn
}
play(video: HTMLVideoElement) {
}
playPause() {
}
}