37 lines
614 B
TypeScript
37 lines
614 B
TypeScript
/**
|
|
* @module
|
|
* @description
|
|
* Change detection enables data binding in Angular.
|
|
*/
|
|
|
|
export {
|
|
CHECK_ONCE,
|
|
CHECK_ALWAYS,
|
|
DETACHED,
|
|
CHECKED,
|
|
ON_PUSH,
|
|
DEFAULT,
|
|
|
|
ExpressionChangedAfterItHasBeenCheckedException,
|
|
ChangeDetectionError,
|
|
|
|
ChangeDetectorRef,
|
|
|
|
WrappedValue,
|
|
Pipe,
|
|
Pipes,
|
|
PipeFactory,
|
|
BasePipe,
|
|
NullPipe,
|
|
NullPipeFactory,
|
|
|
|
ChangeDetector,
|
|
ChangeDispatcher,
|
|
ChangeDetection,
|
|
ChangeDetectorDefinition,
|
|
DynamicChangeDetection,
|
|
JitChangeDetection,
|
|
PreGeneratedChangeDetection,
|
|
preGeneratedProtoDetectors
|
|
} from 'angular2/src/change_detection/change_detection';
|