| 7 | } from class="st">'redux' |
| 8 | |
| 9 | interface AddTodoAction extends Action { |
| 10 | text: string |
| 11 | } |
| 12 | |
| 13 | const addTodo: ActionCreator<AddTodoAction, [string]> = text => ({ |
| 14 | type: class="st">'ADD_TODO', |
nothing calls this directly
no outgoing calls
no test coverage detected