2016-05-26 16:51:44 -07:00
|
|
|
/**
|
|
|
|
* Name of the primary outlet.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2016-06-08 11:13:41 -07:00
|
|
|
export const PRIMARY_OUTLET = 'PRIMARY_OUTLET';
|
2016-05-26 16:51:44 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A collection of parameters.
|
|
|
|
*/
|
2016-06-08 11:13:41 -07:00
|
|
|
export type Params = {
|
2016-06-14 16:29:37 -07:00
|
|
|
[key: string]: any
|
2016-06-08 11:13:41 -07:00
|
|
|
};
|