misc(docs): Edits and additions for Forms and Change Detection

This commit is contained in:
Naomi Black
2015-04-13 21:00:52 -07:00
parent 2d09f84182
commit 8475c63a6a
5 changed files with 65 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* @module
* @public
* @description
* Description of the change_detection module
* Change detection enables data binding in Angular.
*/
export {
@ -79,5 +79,16 @@ export class JitChangeDetection extends ChangeDetection {
var _registry = new PipeRegistry(defaultPipes);
/**
* Implements dynamic change detection. See: [ChangeDetection] for more details.
*
* @exportedAs angular2/change_detection
*/
export var dynamicChangeDetection = new DynamicChangeDetection(_registry);
/**
* Implements just-in-time change detection. See: [ChangeDetection] for more details.
*
* @exportedAs angular2/change_detection
*/
export var jitChangeDetection = new JitChangeDetection(_registry);