angular-cn/modules/@angular/router/src/shared.ts

11 lines
201 B
TypeScript
Raw Normal View History

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