Fixing common package

This commit is contained in:
Marcel Mraz 2025-03-17 13:57:03 +01:00
parent aa873234ad
commit 44d8a6b4fe
No known key found for this signature in database
GPG key ID: 4EBD6E62DC830CD2
22 changed files with 182 additions and 88 deletions

13
packages/common/global.d.ts vendored Normal file
View file

@ -0,0 +1,13 @@
interface Window {
EXCALIDRAW_EXPORT_SOURCE: string;
}
interface ImportMetaEnv {
MODE: string;
DEV: string;
PROD: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}