Created
April 2, 2019 20:15
-
-
Save alex-okrushko/d5724ec527d731d361e492e11fb5f485 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 enum ActionTypes { | |
Login = '[Login Page] Login', | |
} | |
export class Login implements Action { | |
readonly type = ActionTypes.Login; | |
constructor(public payload: { username: string; password: string }) {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment