2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-05-26 19:51:44 -04:00
|
|
|
/**
|
|
|
|
* Name of the primary outlet.
|
|
|
|
* @type {string}
|
2016-06-27 15:27:23 -04:00
|
|
|
*
|
|
|
|
* @experimental
|
2016-05-26 19:51:44 -04:00
|
|
|
*/
|
2016-06-08 14:13:41 -04:00
|
|
|
export const PRIMARY_OUTLET = 'PRIMARY_OUTLET';
|
2016-05-26 19:51:44 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A collection of parameters.
|
2016-06-27 15:27:23 -04:00
|
|
|
*
|
|
|
|
* @experimental
|
2016-05-26 19:51:44 -04:00
|
|
|
*/
|
2016-06-08 14:13:41 -04:00
|
|
|
export type Params = {
|
2016-06-14 19:29:37 -04:00
|
|
|
[key: string]: any
|
2016-06-08 14:13:41 -04:00
|
|
|
};
|