@domonda/plumb
Advanced tools
Comparing version 2.2.4 to 2.2.5
@@ -6,2 +6,10 @@ # Change Log | ||
## [2.2.5](https://github.com/domonda/domonda-js/compare/@domonda/plumb@2.2.4...@domonda/plumb@2.2.5) (2019-11-21) | ||
**Note:** Version bump only for package @domonda/plumb | ||
## [2.2.4](https://github.com/domonda/domonda-js/compare/@domonda/plumb@2.2.3...@domonda/plumb@2.2.4) (2019-10-01) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@domonda/plumb", | ||
"version": "2.2.4", | ||
"version": "2.2.5", | ||
"description": "Simple state management inspired by Observables.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -9,6 +9,6 @@ /** | ||
} | ||
export declare type Subscriber<S, T> = ((state: Readonly<S>, tag: T) => void) | ({ | ||
export declare type Subscriber<S, T> = ((state: Readonly<S>, tag: T) => void) | { | ||
dispose?: () => void; | ||
next?: (state: Readonly<S>, tag: T) => void; | ||
}); | ||
}; | ||
export declare type Subscription = Disposable; | ||
@@ -15,0 +15,0 @@ export declare type Transformer<S, T> = (state: Readonly<S>, tag: T | undefined) => S; |
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
13227