Created
October 30, 2016 20:16
-
-
Save janneh/f7dde17e881e340722ffa91525d509aa to your computer and use it in GitHub Desktop.
Flux standard action interface
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
interface FluxStandardAction { | |
type: string | symbol | any; | |
payload?: any; | |
error?: boolean | any; | |
meta?: any | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment