18 lines
212 B
TypeScript
Raw Normal View History

2018-12-09 12:37:54 +09:00
import AnimeNotifier from "./AnimeNotifier"
export default class VideoPlayer {
arn: AnimeNotifier
constructor(arn: AnimeNotifier) {
this.arn = arn
}
2019-04-22 18:06:50 +09:00
play(_: HTMLVideoElement) {
2018-12-09 12:37:54 +09:00
}
playPause() {
}
2019-11-17 18:44:30 +09:00
}