Skip to content

Instantly share code, notes, and snippets.

@alex-okrushko
Last active April 3, 2019 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-okrushko/155a66f265c9cfe818b9dba6408cc83e to your computer and use it in GitHub Desktop.
Save alex-okrushko/155a66f265c9cfe818b9dba6408cc83e to your computer and use it in GitHub Desktop.
export class MyEffects {
constructor(private readonly actions$: Actions) {}
@Effect
login$ = this.actions$.pipe(
ofType(login), // provide type safety *without* ActionsUnion
...
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment