Comparing version 3.2.1 to 3.2.2
# Changelog | ||
## 3.2.2 | ||
- fix: `subscribe` function proper signature | ||
## 3.2.1 | ||
- fix: `filter` and `distinct` operators are not triggered for first values | ||
- fix: `filter` and `distinct` operators are not triggered for initial `Atom`s values | ||
@@ -6,0 +9,0 @@ ## 3.2 |
@@ -1,2 +0,2 @@ | ||
import { Subscription } from './Types'; | ||
import { Observer, ValueListener, ErrorListener, CompletionListener, Subscription } from './Types'; | ||
import { Base } from './Base'; | ||
@@ -6,3 +6,4 @@ export declare class BaseAtom<T> extends Base<T> { | ||
protected flush: () => void; | ||
subscribe(...args: any[]): Subscription; | ||
subscribe(observer: Observer<T>): Subscription; | ||
subscribe(onNext?: ValueListener<T>, onError?: ErrorListener, onCompletion?: CompletionListener): Subscription; | ||
} |
@@ -1,2 +0,2 @@ | ||
import { Subscriber, Subscription, NO_VALUE_T } from './Types'; | ||
import { Subscriber, Subscription, Observer, ValueListener, ErrorListener, CompletionListener, NO_VALUE_T } from './Types'; | ||
import { Base } from './Base'; | ||
@@ -9,3 +9,4 @@ export declare class BaseObservable<T> extends Base<T> { | ||
protected flush: () => void; | ||
subscribe(...args: any[]): Subscription; | ||
subscribe(observer: Observer<T>): Subscription; | ||
subscribe(onNext?: ValueListener<T>, onError?: ErrorListener, onCompletion?: CompletionListener): Subscription; | ||
} |
{ | ||
"name": "immview", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
471174
3824