Created
July 10, 2020 06:41
-
-
Save mcjcloud/6a5bd34ea8460b85eeca94f0c72503d4 to your computer and use it in GitHub Desktop.
Asterisk Medium Article: action types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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