Skip to content
This repository was archived by the owner on Feb 17, 2024. It is now read-only.

Commit daa9602

Browse files
committed
style: clean up
1 parent bee9cd3 commit daa9602

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/app/models/CounterModel.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ export class CounterModel {
1919
public subject: any = new ReplaySubject(1);
2020
private _state: IState;
2121
constructor(
22-
@Inject(CounterIntent) intent, @Inject('counterState') state) {
22+
@Inject(CounterIntent) intent,
23+
@Inject('counterState') state) {
24+
2325
console.log('CounterMODEL');
2426
this._state = state;
2527

src/app/models/GreetModel.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export class GreetModel {
2222
public subject: any = new ReplaySubject(1);
2323
private _state: IState;
2424
constructor(
25-
@Inject(GreetIntent) intent, @Inject('greetState') state) {
25+
@Inject(GreetIntent) intent,
26+
@Inject('greetState') state) {
27+
2628
console.log('GreetMODEL');
2729
this._state = state;
2830

0 commit comments

Comments
 (0)