feat(core): split ChangeDetectorStrategy into ChangeDetectionStrategy and ChangeDetectorStatus

This commit is contained in:
vsavkin
2016-06-27 20:00:30 -07:00
parent 797914e948
commit e12b1277df
13 changed files with 91 additions and 109 deletions

View File

@ -178,12 +178,8 @@ export declare class Binding extends Provider {
/** @stable */
export declare enum ChangeDetectionStrategy {
CheckOnce = 0,
Checked = 1,
CheckAlways = 2,
Detached = 3,
OnPush = 4,
Default = 5,
OnPush = 0,
Default = 1,
}
/** @stable */