Comparing version 1.6.0 to 1.6.1
{ | ||
"name": "most", | ||
"version": "1.6.0", | ||
"version": "1.6.1", | ||
"description": "Monadic streams", | ||
@@ -5,0 +5,0 @@ "typings": "type-definitions/most.d.ts", |
@@ -163,4 +163,4 @@ declare type SeedValue<S, V> = { seed: S, value: V }; | ||
// Note: Without higher-kinded types, this type cannot be written properly | ||
await<B>(): Stream<B>; | ||
await<B>(this: Stream<Promise<B>>): Stream<B>; | ||
awaitPromises<B>(this: Stream<Promise<B>>): Stream<B>; | ||
@@ -344,2 +344,3 @@ sample<B, C, R>( | ||
export function await<A>(s: Stream<Promise<A>>): Stream<A>; | ||
export function awaitPromises<A>(s: Stream<Promise<A>>): Stream<A>; | ||
@@ -346,0 +347,0 @@ export function sample<A, B, R>( |
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
682033
11906