mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
13 lines
190 B
TypeScript
13 lines
190 B
TypeScript
interface Window {
|
|
EXCALIDRAW_EXPORT_SOURCE: string;
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
MODE: string;
|
|
DEV: string;
|
|
PROD: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|