Property '' does not exist on type 'Window & typeof globalThis'.ts angular code example
Example 1: typescript add global variable to window
declare global {
interface Window {
FB:any;
}
}
let FB = window.FB; // ok now
Example 2: window typescript
(window as any).MyNamespace