chore(client/print): fix types

This commit is contained in:
Elian Doran 2025-11-21 20:14:44 +02:00
parent 6023d53506
commit 39be268969
No known key found for this signature in database

View File

@ -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;