Created
July 10, 2020 06:46
-
-
Save mcjcloud/835b9a12b026384ff81ca62dca12a706 to your computer and use it in GitHub Desktop.
Asterisk Medium Article: state interface
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
// State type | |
// this interface represents the schema for the Todo state | |
export interface TodoState { | |
fetchError?: any | |
createError?: any | |
completeError?: any | |
uncompleteError?: any | |
isFetchingTodos: boolean | |
isCreatingTodo: boolean | |
isCompletingTodo: boolean | |
isUncompletingTodo: boolean | |
todos: TodoItem[] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment