Skip to content

Instantly share code, notes, and snippets.

View jakubsta's full-sized avatar

Jakub Stasiak jakubsta

View GitHub Profile
### Keybase proof
I hereby claim:
* I am jakubsta on github.
* I am jakubsta (https://keybase.io/jakubsta) on keybase.
* I have a public key ASCFUQzkeg-F4fFW51IakXi4nDEYg40pqHOM5H0xBWOQCQo
To claim this, I am signing this object:
/* @flow */
type Reducer<T1, T2> = (x: T1, y: T2) => T1;
type Action<T1> = {
type: string;
payload: T1;
};
type ActionCreator<T1>= (x: any) => Action<T1>;
// implementation