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;