@typeheim/fire-rx
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "@typeheim/fire-rx", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "RxJS on steroids", | ||
@@ -32,3 +32,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "66a5cc7cb7686f8533be35a3eafd2556c8f79819" | ||
"gitHead": "bd1ec62535962da31713039df9b9e8731fed3570" | ||
} |
@@ -1,2 +0,2 @@ | ||
import { Observable } from 'rxjs'; | ||
import { Observable, Observer } from 'rxjs'; | ||
import { ReadonlyStream } from './ReadonlyStream'; | ||
@@ -53,2 +53,5 @@ import { Producer } from '../Contracts/Observables'; | ||
fail: (error: any) => void; | ||
isFinished: () => boolean; | ||
isFailed: () => boolean; | ||
subscribe: (observer: (value: T) => void | Observer<T>) => void; | ||
} |
@@ -17,2 +17,3 @@ "use strict"; | ||
isFailed: () => this.internalSubject.hasError, | ||
subscribe: (observer) => this.subscribe(observer) | ||
}; | ||
@@ -19,0 +20,0 @@ executor(state); |
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
58518
1014