Я использую Highchart в своем проекте angular, все работает нормально, но когда я обновляю свой angular cli до 9.1.4, объявление начинает выдавать следующую ошибку (скриншот ошибки https://prnt.sc/scl6g8)
Argument of type 'typeof import("/project/node_modules/highcharts/highcharts")' is not
assignable to parameter of type 'typeof import("/project/node_modules/highcharts/highcharts.src")'.
Property 'ZAxis' is missing in type 'typeof import("/project/node_modules/highcharts/highcharts")'
but required in type 'typeof import("/project/node_modules/highcharts/highcharts.src")'.ts(2345)
highcharts-3d.src.d.ts(19, 9): 'ZAxis' is declared here.
вот инструкция импорта
import { Component, OnInit, Input } from '@angular/core';
import * as Highcharts from 'highcharts';
import highcharts3D from 'highcharts/highcharts-3d.src';
highcharts3D(Highcharts); // the above error is thrown on this line