Skip to content

Instantly share code, notes, and snippets.

@cjfswd
Last active June 23, 2022 07:27
Show Gist options
  • Save cjfswd/560bc4839b09fa7eb3a1d94af49fdbdb to your computer and use it in GitHub Desktop.
Save cjfswd/560bc4839b09fa7eb3a1d94af49fdbdb to your computer and use it in GitHub Desktop.
typing environment variables at typescript project
declare global {
namespace NodeJS {
interface ProcessEnv {
VARIABLE_NAME: string;
}
}
}
export { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment