2015-04-10 06:45:02 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
2015-04-14 00:00:52 -04:00
|
|
|
* Change detection enables data binding in Angular.
|
2015-04-10 06:45:02 -04:00
|
|
|
*/
|
|
|
|
|
2015-05-01 17:05:19 -04:00
|
|
|
export {
|
|
|
|
CHECK_ONCE,
|
|
|
|
CHECK_ALWAYS,
|
|
|
|
DETACHED,
|
|
|
|
CHECKED,
|
|
|
|
ON_PUSH,
|
2015-07-11 11:26:48 -04:00
|
|
|
DEFAULT,
|
|
|
|
|
|
|
|
ExpressionChangedAfterItHasBeenCheckedException,
|
|
|
|
ChangeDetectionError,
|
|
|
|
|
2015-07-30 13:01:31 -04:00
|
|
|
ChangeDetector,
|
|
|
|
Locals,
|
2015-07-11 11:26:48 -04:00
|
|
|
ChangeDetectorRef,
|
|
|
|
|
|
|
|
WrappedValue,
|
2015-07-28 19:25:33 -04:00
|
|
|
defaultPipes,
|
2015-07-11 11:26:48 -04:00
|
|
|
Pipe,
|
|
|
|
Pipes,
|
|
|
|
PipeFactory,
|
|
|
|
BasePipe,
|
|
|
|
NullPipe,
|
2015-07-24 17:56:57 -04:00
|
|
|
NullPipeFactory
|
2015-07-11 11:26:48 -04:00
|
|
|
} from 'angular2/src/change_detection/change_detection';
|