From 0c4752410dcce98d642bd038b74bd2568c995cbb Mon Sep 17 00:00:00 2001 From: VodBox Date: Sun, 3 Mar 2024 21:12:45 +1100 Subject: [PATCH] fix(pinball): build error --- src/channels/pinball/import.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channels/pinball/import.ts b/src/channels/pinball/import.ts index 97b72b8..4093e93 100644 --- a/src/channels/pinball/import.ts +++ b/src/channels/pinball/import.ts @@ -1,7 +1,7 @@ import PinballWasm from './bin/SpaceCadetPinball.wasm?url'; //@ts-expect-error import SpaceCadetPinball from './bin/SpaceCadetPinball.mjs'; -import type { MainModule } from './bin/SpaceCadetPinball.d.ts'; +import type { MainModule } from './bin/SpaceCadetPinball'; export const offscreen = new OffscreenCanvas(600, 416) as OffscreenCanvas & { style: Record;