mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
12 lines
242 B
TypeScript
12 lines
242 B
TypeScript
interface ImportMetaEnv {
|
|
MODE: string;
|
|
DEV: string;
|
|
PROD: string;
|
|
|
|
// To enable bounding box for text containers
|
|
VITE_APP_DEBUG_ENABLE_TEXT_CONTAINER_BOUNDING_BOX: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|