Skip to content

Instantly share code, notes, and snippets.

@mcjcloud
Created July 10, 2020 06:41
Show Gist options
  • Save mcjcloud/6a5bd34ea8460b85eeca94f0c72503d4 to your computer and use it in GitHub Desktop.
Save mcjcloud/6a5bd34ea8460b85eeca94f0c72503d4 to your computer and use it in GitHub Desktop.
Asterisk Medium Article: action types
export interface TodoUncompletedStarted { type: "TODO_UNCOMPLETED_STARTED" }
export interface TodoUncompleted {
type: "TODO_UNCOMPLETED"
payload: {
todo: TodoItem
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment