permanent-waves/audio_player.ts

13 lines
177 B
TypeScript
Raw Normal View History

2024-05-01 02:44:20 +00:00
export class AudioPlayer {
audio?: AsyncIterableIterator<Uint8Array>;
playing = false;
play() {
if(this.playing) {
return;
}
this.playing = true;
}
}