9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'production';
|
|
CF_PAGES_BRANCH: string;
|
|
}
|
|
}
|
|
}
|