@@ -6,28 +6,32 @@ import {global} from 'angular2/src/facade/lang';
66// https://github.com/systemjs/systemjs/issues/487 gets closed.
77var __ignore_me = global ;
88/**
9- * Defines lifecycle method [ onChange] called after all of component's bound
10- * properties are updated.
9+ * Defines lifecycle method { @link annotations/LifeCycleEvent# onChange `LifeCycleEvent.onChange`}
10+ * called after all of component's bound properties are updated.
1111 */
1212export interface OnChange { onChange ( changes : StringMap < string , any > ) : void ; }
1313
1414/**
15- * Defines lifecycle method [onDestroy] called when a directive is being destroyed.
15+ * Defines lifecycle method {@link annotations/LifeCycleEvent#onDestroy `LifeCycleEvent.onDestroy`}
16+ * called when a directive is being destroyed.
1617 */
1718export interface OnDestroy { onDestroy ( ) : void ; }
1819
1920/**
20- * Defines lifecycle method [onCheck] called when a directive is being checked.
21+ * Defines lifecycle method {@link annotations/LifeCycleEvent#onCheck `LifeCycleEvent.onCheck`}
22+ * called when a directive is being checked.
2123 */
2224export interface OnCheck { onCheck ( ) : void ; }
2325
2426/**
25- * Defines lifecycle method [onInit] called when a directive is being checked the first time.
27+ * Defines lifecycle method {@link annotations/LifeCycleEvent#onInit `LifeCycleEvent.onInit`}
28+ * called when a directive is being checked the first time.
2629 */
2730export interface OnInit { onInit ( ) : void ; }
2831
2932/**
30- * Defines lifecycle method [onAllChangesDone ] called when the bindings of all its children have
31- * been changed.
33+ * Defines lifecycle method
34+ * {@link annotations/LifeCycleEvent#onAllChangesDone `LifeCycleEvent.onAllChangesDone`}
35+ * called when the bindings of all its children have been changed.
3236 */
3337export interface OnAllChangesDone { onAllChangesDone ( ) : void ; }
0 commit comments