Created
June 9, 2020 14:54
-
-
Save emanueleDiVizio/c1730a0c8352b336b5b12533ef2881f1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
type ActionToBeQueued = { | |
type: string, | |
payload?: any, | |
meta: { | |
retry?: boolean, // By passing true, your action will be enqueued on offline mode | |
dismiss?: Array<string> // Array of actions which, once dispatched, will trigger a dismissal from the queue | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment