mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-22 23:45:02 +00:00
9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
declare namespace NodeJS {
|
|
export interface ProcessEnv {
|
|
JOBS_ENABLED: "True" | "False",
|
|
JOBS_DIR: string,
|
|
AUTH_ENABLED: "True" | "False",
|
|
AUTH_SESSION_SECRET: string,
|
|
SEQUELIZE_LOGGING: "True" | "False"
|
|
}
|
|
} |