我正在尝试覆盖Angular 8应用程序内的第三方库(vis.js)中的两种不同方法。
当前,我正在像这样导入库:
import {Timeline, DataSet, TimelineTimeAxisOption, Graph2dOptions} from 'vis-timeline';
新的时间轴对象上有两个函数:
const timeline = new Timeline(container, items, options);
timeline.timeAxis.step.prototype.getLabelMajor
timeline.timeAxis.step.prototype.getLabelMinor
但是,我现在无法获取它来覆盖它们,甚至无法确定如何执行此操作。