(this: any)
| 34 | const uniqueThis = {} |
| 35 | const argArray = [1, 2, 3] |
| 36 | function actionCreator(this: any) { |
| 37 | return { type: 'UNKNOWN_ACTION', this: this, args: [...arguments] } |
| 38 | } |
| 39 | const boundActionCreator = bindActionCreators(actionCreator, store.dispatch) |
| 40 | |
| 41 | const boundAction = boundActionCreator.apply(uniqueThis, argArray as []) |
no outgoing calls
no test coverage detected