(text: string)
| 11 | import { Dispatch } from 'redux' |
| 12 | |
| 13 | export function addTodo(text: string): TodoAction { |
| 14 | return { type: ADD_TODO, text } |
| 15 | } |
| 16 | |
| 17 | export function addTodoAsync(text: string) { |
| 18 | return (dispatch: Dispatch): Promise<void> => |
no outgoing calls