Skip to content

Instantly share code, notes, and snippets.

@jonathborg
Created May 7, 2023 18:52
Show Gist options
  • Save jonathborg/ee01bb391c133c8237eaa3fc687f2628 to your computer and use it in GitHub Desktop.
Save jonathborg/ee01bb391c133c8237eaa3fc687f2628 to your computer and use it in GitHub Desktop.
declare namespace NodeJS {
export interface ProcessEnv {
readonly NODE_ENV: 'development' | 'production';
readonly NODE_PORT?: string;
readonly API_URL?: string;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment