我最近将我的角度项目升级为使用最新的4.0.0-beta.7版本。但是我一直收到以下错误:
@angular\core\src\change_detection\differs\iterable_differs.d.ts:14: TS2304 Cannot find name 'Iterable'.
export declare type NgIterable<T> = Array<T> | Iterable<T>;
知道如何解决这个问题吗?
答案 0 :(得分:0)
在我的主页中,我删除了
ActiveSheet.CommandButton1.BackColor = RGB(220, 105, 0)
并添加了
/// <reference path="./../typings/browser/ambient/es6-shim/index.d.ts" />
修复了这个问题,希望这会有所帮助。