Import Plotly.js in Angular
I followed the instructions from this SO answer to integrate plotly in the application. Unfortunately I experience typescript errors, when trying out the standard examples of plotly.js. The argument types of Plotly.newPlot(...) seem to be not correct. Here is my component: import {Component, OnInit} from '@angular/core'; import * as Plotly from 'plotly.js'; import {Config, Data, Layout} from 'plotly.js'; @Component({ selector: 'app-tabs', templateUrl: './tabs.component.html', styleUrls: ['./tabs.component.css'] }) export class TabsComponent implements OnInit { constructor() { } ngOnInit() {