(name: string, query: any)
| 28 | }; |
| 29 | |
| 30 | export const routerToNameWithQuery = async (name: string, query: any) => { |
| 31 | await pushWithAccessCheck({ name: name, query: query }); |
| 32 | }; |
| 33 | |
| 34 | export const routerToPathWithQuery = async (path: string, query: any) => { |
| 35 | await pushWithAccessCheck({ path: path, query: query }); |
nothing calls this directly
no test coverage detected