| 27 | | "/test/visible-task/"; |
| 28 | |
| 29 | export interface AppRouteMap { |
| 30 | "/": {}; |
| 31 | "/api/v1/[publicApiKey]/bundles/": { publicApiKey: string }; |
| 32 | "/api/v1/[publicApiKey]/bundles/strategy/": { publicApiKey: string }; |
| 33 | "/api/v1/[publicApiKey]/post/": { publicApiKey: string }; |
| 34 | "/api/v1/[publicApiKey]/post/error/": { publicApiKey: string }; |
| 35 | "/api/v1/[publicApiKey]/post/manifest/": { publicApiKey: string }; |
| 36 | "/app/": {}; |
| 37 | "/app/[publicApiKey]/": { publicApiKey: string }; |
| 38 | "/app/[publicApiKey]/edit/": { publicApiKey: string }; |
| 39 | "/app/[publicApiKey]/errors/": { publicApiKey: string }; |
| 40 | "/app/[publicApiKey]/manifests/": { publicApiKey: string }; |
| 41 | "/app/[publicApiKey]/routes/": { publicApiKey: string }; |
| 42 | "/app/[publicApiKey]/routes/[route]/": { |
| 43 | publicApiKey: string; |
| 44 | route: string; |
| 45 | }; |
| 46 | "/app/[publicApiKey]/symbols/": { publicApiKey: string }; |
| 47 | "/app/[publicApiKey]/symbols/bundles/": { publicApiKey: string }; |
| 48 | "/app/[publicApiKey]/symbols/edge/": { publicApiKey: string }; |
| 49 | "/app/[publicApiKey]/symbols/outgoing/": { publicApiKey: string }; |
| 50 | "/app/[publicApiKey]/symbols/slow/": { publicApiKey: string }; |
| 51 | "/app/add/": {}; |
| 52 | "/test/": {}; |
| 53 | "/test/counter/": {}; |
| 54 | "/test/visible-task/": {}; |
| 55 | } |
| 56 | |
| 57 | export interface AppRouteParamsFunction { |
| 58 | (route: "/", params?: {}): string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…