angular-docs-cn/modules/angular2/test/core/pipes/spies.ts

7 lines
247 B
TypeScript
Raw Normal View History

2015-10-08 11:22:11 -04:00
import {ChangeDetectorRef_} from 'angular2/src/core/change_detection/change_detector_ref';
2015-08-26 14:41:41 -04:00
import {SpyObject, proxy} from 'angular2/test_lib';
export class SpyChangeDetectorRef extends SpyObject {
2015-10-08 11:22:11 -04:00
constructor() { super(ChangeDetectorRef_); }
2015-08-26 14:41:41 -04:00
}