我在 Angular 2 应用程序中有一个从“ngx-toastr”导入的 ToastrService 。问题是我在那里显示的文本不适合,它被剪掉了。
我可以在某个地方扩展它吗?
例如,我可以在 toastrConfig 中设置一些参数:
const toastrConfig: Partial<IndividualConfig> = {
timeOut: 20000,
extendedTimeOut: 20000
};
this.toastr.warning(message, null, toastrConfig);
但是我没有找到IndividualConfig
关于弹出窗口应该有多宽/窄的任何设置。