import {inject} from '../infrastructure/Dectorators/Components'; @inject(['$stateProvider']) export class Routes { constructor($stateProvider: ng.ui.IStateProvider) { $stateProvider.state('chroma.flight-detail', { url: '/flight-detail/:id', params: { flight: undefined, id: undefined, requestId: undefined }, views: { 'content': { template: '' } } }); } }