Files
sortsys-ui/env.d.ts
Ludwig Lehnert 0efd3d954b
Some checks failed
CodeQL / Analyze (push) Failing after 1m32s
initial commit
2026-01-11 11:08:48 +01:00

19 lines
302 B
TypeScript

declare global {
interface ImportMeta {
env: {
NODE_ENV: 'production' | 'development'
PROD: boolean
DEV: boolean
}
}
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'production' | 'development'
PROD: boolean
DEV: boolean
}
}
}
export {}