Last active
January 16, 2019 04:16
-
-
Save ZackDeRose/90ba14cbbe33cb73e0744cbe0d55ddd6 to your computer and use it in GitHub Desktop.
car-list-facade.ts
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
@Injectable() | |
export class CarsListFacade extends CarsFacade { | |
_source = 'Cars List'; | |
constructor(private store$: Store<any>) { | |
super(store$); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment