angular2
Version:
Angular 2 - a web framework for modern web apps
32 lines (31 loc) • 695 B
TypeScript
/**
* A list of {@link Provider}s. To use the router, you must add this to your application.
*
* ### Example ([live demo](http://plnkr.co/edit/iRUP8B5OUbxCWQ3AcIDm))
*
* ```
* import {Component} from 'angular2/core';
* import {
* ROUTER_DIRECTIVES,
* ROUTER_PROVIDERS,
* RouteConfig
* } from 'angular2/router';
*
* @Component({directives: [ROUTER_DIRECTIVES]})
* @RouteConfig([
* {...},
* ])
* class AppCmp {
* // ...
* }
*
* bootstrap(AppCmp, [ROUTER_PROVIDERS]);
* ```
*/
export declare const ROUTER_PROVIDERS: any[];
/**
* Use {@link ROUTER_PROVIDERS} instead.
*
* @deprecated
*/
export declare const ROUTER_BINDINGS: any[];