Last active
June 11, 2018 09:05
-
-
Save alanxone/38aa72a6537da2ff780919f141c8848d to your computer and use it in GitHub Desktop.
NGRX Tutorial - Authentication Model
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
// NGRX Complete Tutorial Without Pain (Angular6 / RxJS6) | |
// https://medium.com/@andrew.kao/ngrx-complete-tutorial-without-pain-angular6-rxjs6-5511b8cb8dac | |
export interface Authentication { | |
identifier: string; | |
password: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment