Skip to content

Instantly share code, notes, and snippets.

@AnthonyLzq
Last active December 17, 2021 04:26
Show Gist options
  • Save AnthonyLzq/bb96f450b423c6b9e5e0a5d4cf6f6c58 to your computer and use it in GitHub Desktop.
Save AnthonyLzq/bb96f450b423c6b9e5e0a5d4cf6f6c58 to your computer and use it in GitHub Desktop.
Global variable declaration in Node.js >= 16
declare global {
var globalString: string
interface GlobalInterface {
value: unknown
}
type GlobalType = {
value: unknown
}
}
export {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment