diff --git a/src/internal/types.ts b/src/internal/types.ts index 393e238811..f9b9cc8505 100644 --- a/src/internal/types.ts +++ b/src/internal/types.ts @@ -1,5 +1,4 @@ import { Observable } from './Observable'; -import { Action as _Action } from './scheduler/Action'; import { Subscription } from './Subscription'; /** OPERATOR INTERFACES */ @@ -35,12 +34,6 @@ export interface SubscriptionLike extends Unsubscribable { readonly closed: boolean; } -export interface Subscribable { - subscribe(observerOrNext?: PartialObserver | ((value: T) => void), - error?: (error: any) => void, - complete?: () => void): Unsubscribable; -} - export type SubscribableOrPromise = Subscribable | Subscribable | PromiseLike | ObservableLike; /** OBSERVABLE INTERFACES */