@domonda/plumb
Advanced tools
Comparing version 2.2.5 to 2.2.6
@@ -6,2 +6,10 @@ # Change Log | ||
## [2.2.6](https://github.com/domonda/domonda-js/compare/@domonda/plumb@2.2.5...@domonda/plumb@2.2.6) (2020-03-18) | ||
**Note:** Version bump only for package @domonda/plumb | ||
## [2.2.5](https://github.com/domonda/domonda-js/compare/@domonda/plumb@2.2.4...@domonda/plumb@2.2.5) (2019-11-21) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@domonda/plumb", | ||
"version": "2.2.5", | ||
"version": "2.2.6", | ||
"description": "Simple state management inspired by Observables.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -14,3 +14,3 @@ /** | ||
export declare type Subscription = Disposable; | ||
export declare type Transformer<S, T> = (state: Readonly<S>, tag: T | undefined) => S; | ||
export declare type Transformer<S, T> = (state: Readonly<S>, tag: T | undefined) => Readonly<S>; | ||
export declare type Filter<S, T> = (state: S, tag: T) => boolean; | ||
@@ -17,0 +17,0 @@ export declare type Selector<S, K> = (state: Readonly<S>) => K; |
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
13413