@@ -53,7 +53,7 @@ export interface Ng1StateTransitionHook {
53
53
* an intermediate interface.
54
54
*
55
55
* Used to reset [[StateDeclaration]] typings to `any` so the [[Ng1StateDeclaration]] interface can then narrow them */
56
- export interface _Ng1StateDeclaration extends StateDeclaration {
56
+ export interface _Ng1StateDeclaration extends StateDeclaration { // tslint:disable-line:class-name
57
57
onExit ?: any ;
58
58
onRetain ?: any ;
59
59
onEnter ?: any ;
@@ -280,7 +280,7 @@ export interface Ng1StateDeclaration extends _Ng1StateDeclaration, Ng1ViewDeclar
280
280
*
281
281
* The hook can inject global services.
282
282
* It can also inject `$transition$` or `$state$` (from the current transition).
283
- *
283
+ *
284
284
* ### Example:
285
285
* ```js
286
286
* $stateProvider.state({
@@ -375,12 +375,12 @@ export interface Ng1ViewDeclaration extends _ViewDeclaration {
375
375
*
376
376
* A property of [[Ng1StateDeclaration]] or [[Ng1ViewDeclaration]]:
377
377
*
378
- * The name of an [angular 1.5+ `.component()`](https://docs.angularjs.org/guide/component) (or directive with
378
+ * The name of an [angular 1.5+ `.component()`](https://docs.angularjs.org/guide/component) (or directive with
379
379
* bindToController and/or scope declaration) which will be used for this view.
380
380
*
381
381
* Resolve data can be provided to the component via the component's `bindings` object (for 1.3+ directives, the
382
- * `bindToController` is used; for other directives, the `scope` declaration is used). For each binding declared
383
- * on the component, any resolve with the same name is set on the component's controller instance. The binding
382
+ * `bindToController` is used; for other directives, the `scope` declaration is used). For each binding declared
383
+ * on the component, any resolve with the same name is set on the component's controller instance. The binding
384
384
* is provided to the component as a one-time-binding. In general, components should likewise declare their
385
385
* input bindings as [one-way ("<")](https://docs.angularjs.org/api/ng/service/$compile#-scope-).
386
386
*
@@ -638,10 +638,10 @@ export interface Ng1Controller {
638
638
$onInit ( ) : void ;
639
639
/**
640
640
* This callback is called when parameter values have changed.
641
- *
641
+ *
642
642
* This callback can be used to respond to changing parameter values in the current state, or in parent/child states.
643
643
* This callback is especially handy when using dynamic parameters ([[ParamDeclaration.dynamic]])
644
- *
644
+ *
645
645
* Called when:
646
646
* - The view is still active
647
647
* - A new transition has completed successfully
0 commit comments