From b297147f985334b5fc3f2d6d0b9b31cf591eadad Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Wed, 1 Apr 2020 15:40:45 +0200 Subject: [PATCH] Some small error fixes --- shared/js/main.ts | 4 +--- shared/js/proto.ts | 7 ++----- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/shared/js/main.ts b/shared/js/main.ts index 995aa23e..d365dc2a 100644 --- a/shared/js/main.ts +++ b/shared/js/main.ts @@ -615,6 +615,4 @@ loader.register_task(loader.Stage.LOADED, { } }, priority: 20 -}); - -export = {}; \ No newline at end of file +}); \ No newline at end of file diff --git a/shared/js/proto.ts b/shared/js/proto.ts index c21b8a2c..4a3f7bd7 100644 --- a/shared/js/proto.ts +++ b/shared/js/proto.ts @@ -65,12 +65,9 @@ declare global { let remarkable: typeof window.remarkable; - class webkitAudioContext extends AudioContext {} - class webkitOfflineAudioContext extends OfflineAudioContext {} - interface Window { - readonly webkitAudioContext: typeof webkitAudioContext; - readonly AudioContext: typeof webkitAudioContext; + readonly webkitAudioContext: typeof AudioContext; + readonly AudioContext: typeof OfflineAudioContext; readonly OfflineAudioContext: typeof OfflineAudioContext; readonly webkitOfflineAudioContext: typeof webkitOfflineAudioContext; readonly RTCPeerConnection: typeof RTCPeerConnection;