Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(docs): return value of `subscribe` is an object (#164)

authored by

Jovi De Croock and committed by
GitHub
94bfc713 afa04e94

+1 -1
+1 -1
docs/api/sinks.md
··· 25 25 ```typescript 26 26 import { pipe, subscribe } from 'wonka'; 27 27 28 - const [unsubscribe] = pipe( 28 + const { unsubscribe } = pipe( 29 29 source, 30 30 subscribe((x) => console.log(x)); 31 31 );