Last active
October 4, 2022 03:36
-
-
Save zachnicoll/1a6f615eb2886a03a448ae977dae7b70 to your computer and use it in GitHub Desktop.
Typescript Override process.env Typing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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