Added another streaming test

This commit is contained in:
2018-12-09 12:37:54 +09:00
parent 6489b550c9
commit 9b2a973af0
3 changed files with 27 additions and 1 deletions

17
scripts/VideoPlayer.ts Normal file
View File

@ -0,0 +1,17 @@
import AnimeNotifier from "./AnimeNotifier"
export default class VideoPlayer {
arn: AnimeNotifier
constructor(arn: AnimeNotifier) {
this.arn = arn
}
play(video: HTMLVideoElement) {
}
playPause() {
}
}