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