fix(router): fix Params type to allow passing any value types when calling router.navigate

This commit is contained in:
vsavkin 2016-06-14 16:29:37 -07:00
parent f5efccfb44
commit 523fc5536c
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ export const PRIMARY_OUTLET = 'PRIMARY_OUTLET';
* A collection of parameters.
*/
export type Params = {
[key: string]: string
[key: string]: any
};