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): void; } /** * Defines lifecycle method [onDestroy] called when a directive is being destroyed. */ export interface OnDestroy { onDestroy(): void; } /** * Defines lifecycle method [onCheck] called when a directive is being checked. */ export interface OnCheck { onCheck(): void; } /** * Defines lifecycle method [onInit] called when a directive is being checked the first time. */ export interface OnInit { onInit(): void; } /** * Defines lifecycle method [onAllChangesDone ] called when the bindings of all its children have * been changed. */ export interface OnAllChangesDone { onAllChangesDone(): void; }