@most/core
Advanced tools
Comparing version 1.4.1 to 1.4.2
{ | ||
"name": "@most/core", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "Reactive programming with lean, functions-only, curried, tree-shakeable API", | ||
@@ -5,0 +5,0 @@ "typings": "type-definitions/most.d.ts", |
@@ -5,1 +5,8 @@ import { Stream } from '@most/types'; | ||
export function mergeConcurrently<A>(concurrency: number): (s: Stream<Stream<A>>) => Stream<A>; | ||
export function mergeMapConcurrently<A, B>(f: (a: A) => Stream<B>, concurrency: number, s: Stream<A>): Stream<B>; | ||
export function mergeMapConcurrently<A, B>(f: (a: A) => Stream<B>, concurrency: number): (s: Stream<A>) => Stream<B>; | ||
export function mergeMapConcurrently<A, B>(f: (a: A) => Stream<B>): { | ||
(concurrency: number, s: Stream<A>): Stream<B>; | ||
(concurrency: number): (s: Stream<A>) => Stream<B>; | ||
}; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
450140
5112