permanent-waves/audio_player.ts
2024-07-20 14:41:35 -05:00

13 lines
177 B
TypeScript

export class AudioPlayer {
audio?: AsyncIterableIterator<Uint8Array>;
playing = false;
play() {
if(this.playing) {
return;
}
this.playing = true;
}
}