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

12 lines
192 B
TypeScript

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