Skip to content

Instantly share code, notes, and snippets.

@armanozak
Created May 3, 2021 08:48
Show Gist options
  • Save armanozak/50396a617ad1da06bdaf9148ccd2fe91 to your computer and use it in GitHub Desktop.
Save armanozak/50396a617ad1da06bdaf9148ccd2fe91 to your computer and use it in GitHub Desktop.
[What's New in RxJS 7] Better types in Subject next #blog #rxjs
import { Subject } from "rxjs";
const number$ = new Subject<number>();
number$.next();
// Error: An argument for 'value' was not provided.
// in RxJS 6 → No error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment