()
| 9 | } |
| 10 | |
| 11 | const getDefineAction = () => { |
| 12 | const action$ = new Subject() |
| 13 | |
| 14 | return { |
| 15 | next: (params: any) => action$.next(params), |
| 16 | observable: action$.asObservable(), |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | const createIkariConfig = () => ({ |
| 21 | nameForLog: 'abc', |