We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0892a2d commit ac78d89Copy full SHA for ac78d89
src/internal/types.ts
@@ -1,5 +1,4 @@
1
import { Observable } from './Observable';
2
-import { Action as _Action } from './scheduler/Action';
3
import { Subscription } from './Subscription';
4
5
/** OPERATOR INTERFACES */
@@ -35,12 +34,6 @@ export interface SubscriptionLike extends Unsubscribable {
35
34
readonly closed: boolean;
36
}
37
38
-export interface Subscribable<T> {
39
- subscribe(observerOrNext?: PartialObserver<T> | ((value: T) => void),
40
- error?: (error: any) => void,
41
- complete?: () => void): Unsubscribable;
42
-}
43
-
44
export type SubscribableOrPromise<T> = Subscribable<T> | Subscribable<never> | PromiseLike<T> | ObservableLike<T>;
45
46
/** OBSERVABLE INTERFACES */
0 commit comments