From 1dce91c3cfd1cdc8704d148957232c5b9c08fdf9 Mon Sep 17 00:00:00 2001 From: Sebastien DUMETZ Date: Tue, 3 Oct 2023 09:43:50 +0200 Subject: [PATCH] fix globals following last merge --- source/ui/global.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/ui/global.d.ts b/source/ui/global.d.ts index 232a8303..2d1d783a 100644 --- a/source/ui/global.d.ts +++ b/source/ui/global.d.ts @@ -36,4 +36,8 @@ declare const ENV_PRODUCTION: boolean; declare const ENV_LOCAL: boolean; // Google Analytics global variable -declare const ga: any; \ No newline at end of file +declare const ga: any; + +declare interface Window { + webkitAudioContext: typeof AudioContext +}