- I am trying to include intercom npm package in my code base
- but I am getting below error.
- can you guys tell me how to fix it.
- providing my code snippet below
app/app.component.ts(192,17): error TS2339: Property 'init' does not exist on type 'Intercom'.
package https://www.npmjs.com/package/ng-intercom
ngOnInit(): void {
this.intercom.init({
app_id: "mobilecode",
// Supports all optional configuration.
widget: {
"activator": "#intercom"
}
});
- providing whole code here since my codebase is huge