feat(refactor): replaced ObservablePipe and PromisePipe with AsyncPipe

This commit is contained in:
vsavkin
2015-08-04 11:55:21 -07:00
parent bd498977bd
commit 106a28b8dc
9 changed files with 363 additions and 439 deletions

View File

@ -1,5 +1,6 @@
import {
ChangeDetector,
ChangeDetectorRef,
ProtoChangeDetector,
DynamicChangeDetector
} from 'angular2/src/change_detection/change_detection';
@ -26,3 +27,7 @@ export class SpyPipeFactory extends SpyObject {}
export class SpyDependencyProvider extends SpyObject {}
export class SpyIterableDifferFactory extends SpyObject {}
export class SpyChangeDetectorRef extends SpyObject {
constructor() { super(ChangeDetectorRef); }
}