angular-cn/modules/angular2/src/core/compiler/interfaces.ts

8 lines
250 B
TypeScript
Raw Normal View History

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; }