Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 14809df

Browse files
committed
Misc cleanup
1 parent b519d85 commit 14809df

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/@types/global.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ declare global {
138138
outputs: Float32Array[][],
139139
parameters: Record<string, Float32Array>
140140
): boolean;
141-
142141
}
143142

144143
// https://github.com/microsoft/TypeScript/issues/28308#issuecomment-650802278

src/voice/RecorderWorklet.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ declare const currentTime: number;
2525
class MxVoiceWorklet extends AudioWorkletProcessor {
2626
private nextAmplitudeSecond = 0;
2727

28-
constructor() {
29-
super();
30-
}
31-
3228
process(inputs, outputs, parameters) {
3329
// We only fire amplitude updates once a second to avoid flooding the recording instance
3430
// with useless data. Much of the data would end up discarded, so we ratelimit ourselves

0 commit comments

Comments
 (0)