Skip to content

Instantly share code, notes, and snippets.

@zzdjk6
Last active February 13, 2020 09:26
Show Gist options
  • Save zzdjk6/0d24813cad3d34322e487ece603bf9cf to your computer and use it in GitHub Desktop.
Save zzdjk6/0d24813cad3d34322e487ece603bf9cf to your computer and use it in GitHub Desktop.
type ValidAction =
| ReturnType<typeof fetchDataRoutine.request>
| ReturnType<typeof fetchDataRoutine.success>
| ReturnType<typeof fetchDataRoutine.failure>;
const reducer = (state: State = initState, action: ValidAction): State => {
// The reducer logic goes here...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment