feat(router): changes router config not to use names

This commit is contained in:
vsavkin
2016-05-26 16:51:44 -07:00
parent 2e1bd46bb1
commit 86f47273bc
5 changed files with 147 additions and 160 deletions

View File

@ -0,0 +1,10 @@
/**
* Name of the primary outlet.
* @type {string}
*/
export const PRIMARY_OUTLET: string = "PRIMARY_OUTLET";
/**
* A collection of parameters.
*/
export type Params = { [key: string]: string };