Skip to content
This repository was archived by the owner on May 26, 2023. It is now read-only.

Commit f66d075

Browse files
chore(tslint): class-name
1 parent 555bdf1 commit f66d075

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/directives/stateDirectives.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
import { UIViewData } from "./viewDirective";
1919

2020
/** @hidden Used for typedoc */
21-
export interface ng1_directive {}
21+
export interface ng1_directive {} // tslint:disable-line:class-name
2222

2323
/** @hidden */
2424
function parseStateRef(ref: string) {

src/interface.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface Ng1StateTransitionHook {
5353
* an intermediate interface.
5454
*
5555
* 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
5757
onExit?: any;
5858
onRetain?: any;
5959
onEnter?: any;
@@ -280,7 +280,7 @@ export interface Ng1StateDeclaration extends _Ng1StateDeclaration, Ng1ViewDeclar
280280
*
281281
* The hook can inject global services.
282282
* It can also inject `$transition$` or `$state$` (from the current transition).
283-
*
283+
*
284284
* ### Example:
285285
* ```js
286286
* $stateProvider.state({
@@ -375,12 +375,12 @@ export interface Ng1ViewDeclaration extends _ViewDeclaration {
375375
*
376376
* A property of [[Ng1StateDeclaration]] or [[Ng1ViewDeclaration]]:
377377
*
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
379379
* bindToController and/or scope declaration) which will be used for this view.
380380
*
381381
* 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
384384
* is provided to the component as a one-time-binding. In general, components should likewise declare their
385385
* input bindings as [one-way ("<")](https://docs.angularjs.org/api/ng/service/$compile#-scope-).
386386
*
@@ -638,10 +638,10 @@ export interface Ng1Controller {
638638
$onInit(): void;
639639
/**
640640
* This callback is called when parameter values have changed.
641-
*
641+
*
642642
* This callback can be used to respond to changing parameter values in the current state, or in parent/child states.
643643
* This callback is especially handy when using dynamic parameters ([[ParamDeclaration.dynamic]])
644-
*
644+
*
645645
* Called when:
646646
* - The view is still active
647647
* - A new transition has completed successfully

0 commit comments

Comments
 (0)