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

21 lines
396 B
TypeScript
Raw Normal View History

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* Name of the primary outlet.
* @type {string}
*/
2016-06-08 14:13:41 -04:00
export const PRIMARY_OUTLET = 'PRIMARY_OUTLET';
/**
* A collection of parameters.
*/
2016-06-08 14:13:41 -04:00
export type Params = {
[key: string]: any
2016-06-08 14:13:41 -04:00
};