Comparing version 0.1.1 to 0.1.2
@@ -6,3 +6,3 @@ | ||
{ | ||
constructor(left: AsyncIterator<L>, funRight: (L) => AsyncIterator<R>, funJoin: (L, R) => T); | ||
constructor(left: AsyncIterator<L>, funRight: (left: L) => AsyncIterator<R>, funJoin: (left: L, right: R) => T); | ||
@@ -15,3 +15,3 @@ // problem due to async typings | ||
{ | ||
constructor(left: AsyncIterator<S>, right: AsyncIterator<S>, funHash: (S) => H, funJoin: (S, S) => T); | ||
constructor(left: AsyncIterator<S>, right: AsyncIterator<S>, funHash: (entry: S) => H, funJoin: (left: S, right: S) => T); | ||
protected hasResults(): boolean; | ||
@@ -24,3 +24,3 @@ close(): void; | ||
{ | ||
constructor(left: AsyncIterator<L>, right: AsyncIterator<R>, funJoin: (L, R) => T); | ||
constructor(left: AsyncIterator<L>, right: AsyncIterator<R>, funJoin: (left: L, right: R) => T); | ||
close(): void; | ||
@@ -34,3 +34,3 @@ | ||
{ | ||
constructor(left: AsyncIterator<S>, right: AsyncIterator<S>, funHash: (S) => H, funJoin: (S, S) => T); | ||
constructor(left: AsyncIterator<S>, right: AsyncIterator<S>, funHash: (entry: S) => H, funJoin: (left: S, right: S) => T); | ||
protected hasResults(): boolean; | ||
@@ -37,0 +37,0 @@ close(): void; |
{ | ||
"name": "asyncjoin", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Join library for asynciterator", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
11124