(
path: string | string[] | undefined,
objectOrClass: Function | RouteInfo,
)
| 123 | } |
| 124 | |
| 125 | private isRouteInfo( |
| 126 | path: string | string[] | undefined, |
| 127 | objectOrClass: Function | RouteInfo, |
| 128 | ): objectOrClass is RouteInfo { |
| 129 | return isUndefined(path); |
| 130 | } |
| 131 | |
| 132 | private normalizeGlobalPath(path: string): string { |
| 133 | const prefix = addLeadingSlash(path); |
no test coverage detected