
LifeCycle can now be imported via angular2/angular2 or angular2/core, so that end users can inject it without having to use the full source path. Closes #3395
30 lines
447 B
TypeScript
30 lines
447 B
TypeScript
/**
|
|
* @module
|
|
* @description
|
|
* Change detection enables data binding in Angular.
|
|
*/
|
|
|
|
export {
|
|
CHECK_ONCE,
|
|
CHECK_ALWAYS,
|
|
DETACHED,
|
|
CHECKED,
|
|
ON_PUSH,
|
|
DEFAULT,
|
|
|
|
ExpressionChangedAfterItHasBeenCheckedException,
|
|
ChangeDetectionError,
|
|
|
|
ChangeDetector,
|
|
Locals,
|
|
ChangeDetectorRef,
|
|
|
|
WrappedValue,
|
|
Pipe,
|
|
Pipes,
|
|
PipeFactory,
|
|
BasePipe,
|
|
NullPipe,
|
|
NullPipeFactory
|
|
} from 'angular2/src/change_detection/change_detection';
|