| 17 | import type { Type } from "@angular/core"; |
| 18 | |
| 19 | export interface RouteConfig { |
| 20 | name: string; |
| 21 | description: string; |
| 22 | path: string; |
| 23 | loadComponent: () => Promise<{ default: Type<unknown> } | Type<unknown>>; |
| 24 | } |
| 25 | |
| 26 | export const routes: RouteConfig[] = [ |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected