Skip to content

Commit

Permalink
fix(rxjs): remove types.ts importing from itself. (#3383)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenni authored and benlesh committed Mar 7, 2018
1 parent 1e4ca05 commit 8fd50ad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/internal/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Observable } from './Observable';
import { PartialObserver } from './types';

/** OPERATOR INTERFACES */

Expand Down Expand Up @@ -73,4 +72,4 @@ export interface Observer<T> {
next: (value: T) => void;
error: (err: any) => void;
complete: () => void;
}
}

0 comments on commit 8fd50ad

Please sign in to comment.