From 39be26896982e25f695b0985558def2e989fb8f4 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 21 Nov 2025 20:14:44 +0200 Subject: [PATCH] chore(client/print): fix types --- apps/client/src/types.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/client/src/types.d.ts b/apps/client/src/types.d.ts index c386a67f0..7128ea5d8 100644 --- a/apps/client/src/types.d.ts +++ b/apps/client/src/types.d.ts @@ -64,6 +64,11 @@ declare global { EXCALIDRAW_ASSET_PATH?: string; } + interface WindowEventMap { + "note-ready": Event; + "note-load-progress": CustomEvent<{ progress: number }>; + } + interface AutoCompleteConfig { appendTo?: HTMLElement | null; hint?: boolean;