(action, { put })
| 87 | }, |
| 88 | effects: { |
| 89 | *addBoth(action, { put }) { |
| 90 | yield put({ type: 'a/add' }); |
| 91 | yield put({ type: 'add' }); |
| 92 | }, |
| 93 | }, |
| 94 | subscriptions: { |
| 95 | setup() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…