@cosmjs/stream
Advanced tools
Comparing version 0.21.1 to 0.22.0-alpha.0
{ | ||
"name": "@cosmjs/stream", | ||
"version": "0.21.1", | ||
"version": "0.22.0-alpha.0", | ||
"description": "Utility functions for producing and consuming streams", | ||
@@ -28,3 +28,3 @@ "contributors": [ | ||
"scripts": { | ||
"docs": "shx rm -rf docs && typedoc --options typedoc.js", | ||
"docs": "typedoc --options typedoc.js", | ||
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"", | ||
@@ -50,3 +50,3 @@ "lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix", | ||
}, | ||
"gitHead": "66c2b2309c27feecec6fdfb43be50820244665ed" | ||
"gitHead": "2f83fcd1f97f4958dbb8911cb29a338153e46460" | ||
} |
@@ -19,2 +19,2 @@ import { Stream } from "xstream"; | ||
*/ | ||
export declare function concat<T>(...streams: Stream<T>[]): Stream<T>; | ||
export declare function concat<T>(...streams: Array<Stream<T>>): Stream<T>; |
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
40391