Created
July 6, 2018 06:47
-
-
Save lydemann/6f2a7aa88cd1b8be8b414de9b81fe838 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class GenericAction<ActionType, PayloadType> { | |
constructor(type: ActionType, payload?: PayloadType) { | |
this.type = type; | |
this.payload = payload; | |
} | |
type: ActionType; | |
payload?: PayloadType; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment