Last active
February 3, 2018 14:51
-
-
Save code-vagabond/4ffd8ea1433edd12567d70e2eeb0b8c6 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 enum SignInActionTypes { | |
SignIn = '[Auth] Signing In' | |
} | |
export class SignIn implements Action { | |
readonly type = SignInActionTypes.SignIn; | |
constructor(public payload: {err: any}) {} | |
} | |
export type SignInActions = | |
| SignIn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment