mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'production';
|
|
CF_PAGES_BRANCH: string;
|
|
}
|
|
}
|
|
}
|