Skip to content

Instantly share code, notes, and snippets.

@quicksnap
Created January 15, 2018 23:28
Show Gist options
  • Save quicksnap/527561b2fe0caa7ca1f61ebf9caa38cd to your computer and use it in GitHub Desktop.
Save quicksnap/527561b2fe0caa7ca1f61ebf9caa38cd to your computer and use it in GitHub Desktop.
function isAction(
action: Action,
actionCreator: (...args: any[]) => T,
): action is T & Action {
return action.type === ???;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment