Skip to content

Instantly share code, notes, and snippets.

@zachnicoll
Last active October 4, 2022 03:36
Show Gist options
  • Save zachnicoll/1a6f615eb2886a03a448ae977dae7b70 to your computer and use it in GitHub Desktop.
Save zachnicoll/1a6f615eb2886a03a448ae977dae7b70 to your computer and use it in GitHub Desktop.
Typescript Override process.env Typing
declare namespace NodeJS {
export interface ProcessEnv {
VAR_1: string;
VAR_2: string;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment