Struggling to get my application to run in VS code due to this persistent error:
error TS2440: Import declaration conflicts with local declaration of 'Highcharts3d'
Any assistance in resolving this issue would be greatly appreciated.
import { Component, OnInit, ViewChild, ElementRef } from '@angular/core';
import * as Highcharts from 'highcharts';
import * as Highcharts3d from "highcharts/highcharts-3d";
declare var require: any
let Highcharts3d:any = require("highcharts/highcharts-3d");
let HighchartsExporting = require("highcharts/modules/exporting");
Highcharts3d(Highcharts);