SyntaxFix
Write A Post
Hire A Developer
Questions
// global.d.ts declare global { namespace NodeJS { interface Global { bootbox: string // Specify ur type here,use `string` for brief } } } // somewhere else const bootbox = global.bootbox // somewhere else global.bootbox = 'boom'