(pathItem: string)
| 24 | }; |
| 25 | |
| 26 | export const routerToFileWithPath = async (pathItem: string) => { |
| 27 | await pushWithAccessCheck({ name: 'File', query: { path: pathItem, uncached: 'true' } }); |
| 28 | }; |
| 29 | |
| 30 | export const routerToNameWithQuery = async (name: string, query: any) => { |
| 31 | await pushWithAccessCheck({ name: name, query: query }); |
nothing calls this directly
no test coverage detected