refactor(router): use DI imports from public API

This allows us to create smaller CJS bundles for router,
where the bundle doesn't duplicate code from angular2 core.
This commit is contained in:
Pawel Kozlowski
2015-10-11 13:17:06 +02:00
parent 6abed8d996
commit 8667b760f4
7 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
import {DOM} from 'angular2/src/core/dom/dom_adapter';
import {Injectable} from 'angular2/src/core/di';
import {Injectable} from 'angular2/angular2';
import {EventListener, History, Location} from 'angular2/src/core/facade/browser';
import {LocationStrategy} from './location_strategy';