Skip to content

Commit

Permalink
fix: import specific symbols from rxjs (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenni authored and jelbourn committed Jan 6, 2017
1 parent 87d142f commit 88d1b0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Component, OnInit, Inject, OnDestroy} from '@angular/core';
import {Subscription} from "rxjs";
import {Subscription} from "rxjs/Subscription";
import 'rxjs/add/operator/filter';

import {MediaChange} from "../../../lib/media-query/media-change";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Component, OnInit, Inject, OnDestroy} from '@angular/core';
import {Subscription} from "rxjs";
import {Subscription} from "rxjs/Subscription";
import 'rxjs/add/operator/filter';

import {MediaChange} from "../../../lib/media-query/media-change";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Component, Inject, OnDestroy} from '@angular/core';
import {Subscription} from "rxjs";
import {Subscription} from "rxjs/Subscription";
import 'rxjs/add/operator/filter';

import {MediaChange} from "../../../lib/media-query/media-change";
Expand Down

0 comments on commit 88d1b0f

Please sign in to comment.