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 up combine internal type

+1 -1
+1 -1
src/combine.ts
··· 78 78 export function combine<Sources extends Source<any>[]>( 79 79 ...sources: Sources 80 80 ): Source<TypeOfSourceArray<Sources>> { 81 - return zip(sources); 81 + return zip(sources) as Source<any>; 82 82 }