Skip to content

Instantly share code, notes, and snippets.

@janneh
Created October 30, 2016 20:16
Show Gist options
  • Save janneh/f7dde17e881e340722ffa91525d509aa to your computer and use it in GitHub Desktop.
Save janneh/f7dde17e881e340722ffa91525d509aa to your computer and use it in GitHub Desktop.
Flux standard action interface
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