I would like to use intercom in my angular 2 application.
Intercom SPA instructions are here
I have placed the script block in the head of my index.html page, my next thought is to place the following in my app component
ngOnInit()
{
window.Intercom("boot", {
app_id: "abcd",
name: "Jane Doe", // Full name
email: "customer@example.com", // Email address
created_at: 1312182000 // Signup date as a Unix timestamp
});
However, it wont compile saying [ts]
Property 'Intercom' does not exist on type 'Window'.
How do I get this to work using Angular2 and webpack and proceed further?