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