From 1c8d5577745a6403fb0d6d9358ec1bf3b78d283f Mon Sep 17 00:00:00 2001 From: Bowen Ni Date: Mon, 5 Mar 2018 17:59:02 -0800 Subject: [PATCH] fix(rxjs): remove types.ts importing from itself. --- src/internal/types.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/internal/types.ts b/src/internal/types.ts index e9ce758b99..d36f765d4f 100644 --- a/src/internal/types.ts +++ b/src/internal/types.ts @@ -1,5 +1,4 @@ import { Observable } from './Observable'; -import { PartialObserver } from './types'; /** OPERATOR INTERFACES */ @@ -73,4 +72,4 @@ export interface Observer { next: (value: T) => void; error: (err: any) => void; complete: () => void; -} \ No newline at end of file +}