If you explicitly set a new property on ‘window’ in TypeScript? Basically you need to extend the existing window interface to tell it about your new property.
1 2 3 4 5 | declare global { interface Window { MyNamespace: any; } } window.MyNamespace = window.MyNamespace || {}; |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.