fix(core): resurrect OnChange interface

This commit is contained in:
yjbanov
2015-05-22 13:14:59 -07:00
parent 3525c9c074
commit d48fae3566
3 changed files with 44 additions and 1 deletions

View File

@ -0,0 +1,7 @@
import {StringMap} from 'angular2/src/facade/collection';
/**
* Defines lifecycle method [onChange] called after all of component's bound
* properties are updated.
*/
export interface OnChange { onChange(changes: StringMap<string, any>): void; }