Skip to content

Instantly share code, notes, and snippets.

@code-vagabond
Last active February 3, 2018 14:51
Show Gist options
  • Save code-vagabond/4ffd8ea1433edd12567d70e2eeb0b8c6 to your computer and use it in GitHub Desktop.
Save code-vagabond/4ffd8ea1433edd12567d70e2eeb0b8c6 to your computer and use it in GitHub Desktop.
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