mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
195 B
TypeScript
12 lines
195 B
TypeScript
/**
|
|
* Name of the primary outlet.
|
|
* @type {string}
|
|
*/
|
|
export const PRIMARY_OUTLET = 'PRIMARY_OUTLET';
|
|
|
|
/**
|
|
* A collection of parameters.
|
|
*/
|
|
export type Params = {
|
|
[key: string]: string
|
|
};
|