Now it builds

This commit is contained in:
2023-08-06 10:37:45 +02:00
parent b7d38af0d3
commit 6d2ede1445
5 changed files with 14 additions and 2 deletions

View File

@ -1,12 +1,14 @@
class TransportProcessor extends AudioWorkletProcessor {
started: boolean;
options: object;
constructor(options: AudioWorkletNodeOptions) {
super();
this.port.addEventListener("message", this.handleMessage);
this.port.start();
this.started = false;
this.options = options;
}
handleMessage = (message: MessageEvent) => {