Mention / use new api in v8? ```ts import { rx, of, map } from 'rxjs'; rx( of('World'), map((name) => `Hello, ${name}!`) ).subscribe(console.log); ```