--- title: generatePath --- # `generatePath`
Type declaration ```tsx declare function generatePath( path: Path, params?: { [key in PathParams]: string; } ): string; ```
`generatePath` interpolates a set of params into a route path string with `:id` and `*` placeholders. This can be useful when you want to eliminate placeholders from a route path so it matches statically instead of using a dynamic parameter. ```tsx generatePath("/users/:id", { id: "42" }); // "/users/42" generatePath("/files/:type/*", { type: "img", "*": "cat.jpg", }); // "/files/img/cat.jpg" ```