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 genType map operator types

+4 -1
+4 -1
src/wonka_operators.re
··· 308 308 curry(sink => 309 309 source((. signal) => 310 310 sink(. 311 + /* The signal needs to be recreated for genType to generate 312 + the correct generics during codegen */ 311 313 switch (signal) { 314 + | Start(x) => Start(x) 312 315 | Push(x) => Push(f(. x)) 313 - | _ => signal 316 + | End => End 314 317 }, 315 318 ) 316 319 )