|
1 |
| -/** @ng2api @module directives */ /** */ |
2 |
| -import {Directive, Output, EventEmitter, ContentChildren, QueryList, Inject} from "@angular/core"; |
3 |
| -import {UISref} from "./uiSref"; |
4 |
| -import {PathNode} from "ui-router-core"; |
5 |
| -import {Transition} from "ui-router-core"; |
6 |
| -import {TargetState} from "ui-router-core"; |
7 |
| -import {State} from "ui-router-core"; |
8 |
| -import {anyTrueR, tail, unnestR, Predicate} from "ui-router-core"; |
9 |
| -import {UIRouterGlobals} from "ui-router-core"; |
10 |
| -import {Param} from "ui-router-core"; |
11 |
| -import {PathFactory} from "ui-router-core"; |
12 |
| -import {Subscription} from "rxjs/Subscription"; |
13 |
| -import {Observable} from "rxjs/Observable"; |
14 |
| -import {BehaviorSubject} from "rxjs/BehaviorSubject"; |
| 1 | +/** @ng2api @module directives */ |
| 2 | +/** */ |
| 3 | +import { Directive, Output, EventEmitter, ContentChildren, QueryList } from '@angular/core'; |
| 4 | +import { UISref } from './uiSref'; |
| 5 | +import { |
| 6 | + PathNode, Transition, TargetState, State, anyTrueR, tail, unnestR, Predicate, UIRouterGlobals, Param, PathFactory |
| 7 | +} from 'ui-router-core'; |
| 8 | + |
| 9 | +import { Subscription } from 'rxjs/Subscription'; |
| 10 | +import { Observable } from 'rxjs/Observable'; |
| 11 | +import { BehaviorSubject } from 'rxjs/BehaviorSubject'; |
| 12 | + |
| 13 | +import 'rxjs/add/observable/of'; |
| 14 | +import 'rxjs/add/observable/fromPromise'; |
| 15 | +import 'rxjs/add/observable/combineLatest'; |
| 16 | +import 'rxjs/add/operator/concat'; |
| 17 | +import 'rxjs/add/operator/switchMap'; |
15 | 18 |
|
16 | 19 | /** @internalapi */
|
17 | 20 | interface TransEvt { evt: string, trans: Transition }
|
|
0 commit comments