Comparing version 1.1.0 to 1.2.0
@@ -26,2 +26,4 @@ Copyright Statement for Contributions to the Callbag Standard | ||
krawaller | David Waller, david@krawaller.se | ||
bloodyKnuckles | Jay Scott ANDERSON, | ||
bloodyKnuckles | Jay Scott ANDERSON | ||
Andarist | Mateusz Burzyński, mateuszburzynski@gmail.com | ||
{ | ||
"name": "callbag", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "A standard for JS callbacks", | ||
@@ -25,2 +25,2 @@ "repository": { | ||
} | ||
} | ||
} |
@@ -37,1 +37,7 @@ export type START = 0; | ||
) => (source: Source<T>) => Source<R>; | ||
/** | ||
* Conditional types for contained type retrieval | ||
*/ | ||
export type UnwrapSource<T extends Source<any>> = T extends Source<infer R> ? R : never; | ||
export type UnwrapSink<T extends Sink<any>> = T extends Sink<infer R> ? R : never; |
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
24431
10
36