@@ -34,7 +34,7 @@ node ./bin/cli.mjs convertInputSelectorsToArray path/of/files/ or/some**/*glob.j
34
34
35
35
<a id =" separate-inline-arguments.ts " >** separate-inline-arguments.ts** </a >
36
36
37
- ** Input** (<small >[ separate-inline-arguments.input.ts] ( transforms\convertInputSelectorsToArray \_ _testfixtures__ \separate-inline-arguments.input.ts ) </small >):
37
+ ** Input** (<small >[ separate-inline-arguments.input.ts] ( transforms\convertInputSelectorsToArray__testfixtures__ \separate-inline-arguments.input.ts ) </small >):
38
38
39
39
``` ts
40
40
import { createSelector } from ' reselect'
@@ -47,11 +47,11 @@ export interface RootState {
47
47
const selectTodoById = createSelector (
48
48
(state : RootState ) => state .todos ,
49
49
(state : RootState , id : number ) => id ,
50
- (todos , id ) => todos .find (todo => todo .id === id )
50
+ (todos , id ) => todos .find (todo => todo .id === id ),
51
51
)
52
52
```
53
53
54
- ** Output** (<small >[ separate-inline-arguments.output.ts] ( transforms\convertInputSelectorsToArray \_ _testfixtures__ \separate-inline-arguments.output.ts ) </small >):
54
+ ** Output** (<small >[ separate-inline-arguments.output.ts] ( transforms\convertInputSelectorsToArray__testfixtures__ \separate-inline-arguments.output.ts ) </small >):
55
55
56
56
``` ts
57
57
import { createSelector } from ' reselect'
@@ -63,7 +63,8 @@ export interface RootState {
63
63
64
64
const selectTodoById = createSelector (
65
65
[(state : RootState ) => state .todos , (state : RootState , id : number ) => id ],
66
- (todos , id ) => todos .find (todo => todo .id === id )
66
+ (todos , id ) => todos .find (todo => todo .id === id ),
67
67
)
68
68
```
69
- <!-- FIXTURES_CONTENT_END-->
69
+
70
+ <!-- FIXTURES_CONTENT_END-->
0 commit comments