docs(change_detection): don't annotate exports that are already in public modules
Since `DynamicChangeDetection` and `JitChangeDetection` classes are alreadt in the public module, they do not need to be annotated with a `@exportAs` tag Closes #1353
This commit is contained in:
parent
896a1564ef
commit
0e3d0fbec6
|
@ -51,9 +51,6 @@ export var defaultPipes = {
|
|||
};
|
||||
|
||||
|
||||
/**
|
||||
* @exportedAs angular2/change_detection
|
||||
*/
|
||||
export class DynamicChangeDetection extends ChangeDetection {
|
||||
registry:PipeRegistry;
|
||||
|
||||
|
@ -67,9 +64,6 @@ export class DynamicChangeDetection extends ChangeDetection {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @exportedAs angular2/change_detection
|
||||
*/
|
||||
export class JitChangeDetection extends ChangeDetection {
|
||||
registry:PipeRegistry;
|
||||
|
||||
|
|
Loading…
Reference in New Issue