(path: string)
| 20 | }; |
| 21 | |
| 22 | export const routerToPath = async (path: string) => { |
| 23 | await pushWithAccessCheck({ path: path }); |
| 24 | }; |
| 25 | |
| 26 | export const routerToFileWithPath = async (pathItem: string) => { |
| 27 | await pushWithAccessCheck({ name: 'File', query: { path: pathItem, uncached: 'true' } }); |
nothing calls this directly
no test coverage detected