Skip to content

Instantly share code, notes, and snippets.

@adrianfaciu
Last active August 1, 2018 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrianfaciu/4c933da6e9d3439e1021b37d593bf123 to your computer and use it in GitHub Desktop.
Save adrianfaciu/4c933da6e9d3439e1021b37d593bf123 to your computer and use it in GitHub Desktop.
export class ErrorOccurred implements Action {
readonly type = ERROR_OCCURRED;
constructor(
readonly payload: {
action?: Action;
error?: ErrorData;
},
) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment