Skip to content

Commit 9b84be1

Browse files
chore(tslint): no-inferrable-types
1 parent 32c7e7f commit 9b84be1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/directives/uiSref.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class UISref implements OnChanges {
105105
*/
106106
public targetState$ = new ReplaySubject<TargetState>(1);
107107

108-
/** @internalapi */ private _emit: boolean = false;
108+
/** @internalapi */ private _emit = false;
109109
/** @internalapi */ private _statesSub: Subscription;
110110
/** @internalapi */ private _router: UIRouter;
111111
/** @internalapi */ private _anchorUISref: AnchorUISref;

src/statebuilders/views.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function ng2ViewsBuilder(state: StateObject) {
4141
let id = 0;
4242
export class Ng2ViewConfig implements ViewConfig {
4343
$id: number = id++;
44-
loaded: boolean = true;
44+
loaded = true;
4545

4646
constructor(public path: PathNode[], public viewDecl: Ng2ViewDeclaration) { }
4747

0 commit comments

Comments
 (0)