(
key: (keyof DataCalculationInfo<HostModel>) | DataCalculationInfo<HostModel>,
value?: DataCalculationInfo<HostModel>[keyof DataCalculationInfo<HostModel>]
)
| 714 | value: DataCalculationInfo<HostModel>[CALC_INFO_KEY] |
| 715 | ): void; |
| 716 | setCalculationInfo( |
| 717 | key: (keyof DataCalculationInfo<HostModel>) | DataCalculationInfo<HostModel>, |
| 718 | value?: DataCalculationInfo<HostModel>[keyof DataCalculationInfo<HostModel>] |
| 719 | ): void { |
| 720 | isObject(key) |
| 721 | ? zrUtil.extend(this._calculationInfo, key as object) |
| 722 | : ((this._calculationInfo as any)[key] = value); |
| 723 | } |
| 724 | |
| 725 | /** |
| 726 | * @return Never be null/undefined. `number` will be converted to string. Because: |
no test coverage detected