fix(router): fix Params type to allow passing any value types when calling router.navigate
This commit is contained in:
parent
f5efccfb44
commit
523fc5536c
|
@ -8,5 +8,5 @@ export const PRIMARY_OUTLET = 'PRIMARY_OUTLET';
|
|||
* A collection of parameters.
|
||||
*/
|
||||
export type Params = {
|
||||
[key: string]: string
|
||||
[key: string]: any
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue