From ca9360fc29919a3b428d3c452dfcfc8bcf86a95f Mon Sep 17 00:00:00 2001 From: Aria Minaei Date: Tue, 27 Sep 2022 23:26:21 +0200 Subject: [PATCH] Allow audio files in the playground --- packages/playground/src/playground-globals.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/playground/src/playground-globals.d.ts b/packages/playground/src/playground-globals.d.ts index 60bacdc..ea55d33 100644 --- a/packages/playground/src/playground-globals.d.ts +++ b/packages/playground/src/playground-globals.d.ts @@ -9,3 +9,11 @@ declare module '*.glb' { declare module '*.gltf' { export default string } + +declare module '*.mp3' { + export default string +} + +declare module '*.ogg' { + export default string +}