refactor(core): move more modules into core

This commit is contained in:
Jeff Cross
2015-09-03 22:01:17 -07:00
parent 841aa1af5b
commit 6d13cf9b8f
47 changed files with 0 additions and 79 deletions

View File

@ -0,0 +1,27 @@
/**
* @module
* @description
* Change detection enables data binding in Angular.
*/
export {
ChangeDetectionStrategy,
ExpressionChangedAfterItHasBeenCheckedException,
ChangeDetectionError,
ChangeDetector,
Locals,
ChangeDetectorRef,
WrappedValue,
PipeTransform,
PipeOnDestroy,
IterableDiffers,
IterableDiffer,
IterableDifferFactory,
KeyValueDiffers,
KeyValueDiffer,
KeyValueDifferFactory
} from 'angular2/src/core/change_detection/change_detection';