我想在我的 Angular 2 应用程序中使用对讲机。
对讲 SPA 说明在这里
我已将脚本块放在我的 index.html 页面的头部,我的下一个想法是将以下内容放在我的应用程序组件中
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
});
但是,它不会编译说 [ts]
“窗口”类型上不存在属性“对讲机”。
如何使用 Angular2 和 webpack 使其工作并继续进行?