(query: Record<string, string | number | string[]> | undefined)
| 283 | } |
| 284 | |
| 285 | function parseQueryString(query: Record<string, string | number | string[]> | undefined) { |
| 286 | if (!query) { |
| 287 | return ''; |
| 288 | } |
| 289 | const queryString = qs.stringify(query); |
| 290 | return queryString ? `?${queryString}` : ''; |
| 291 | } |
| 292 | |
| 293 | function getInitialRouterConfig(options: InitialRouterOptions): { |
| 294 | config: RouterConfig | undefined; |
no outgoing calls
no test coverage detected