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

View File

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