( opts: HotStateReloadOptions<S>, )
| 118 | } |
| 119 | |
| 120 | function isRoutesReloadOptions<S>( |
| 121 | opts: HotStateReloadOptions<S>, |
| 122 | ): opts is HotStateReloadRoutesOptions<S> { |
| 123 | return "routesModule" in opts; |
| 124 | } |
| 125 | |
| 126 | function toAbsolutePath(input: string | URL, label: string): string { |
| 127 | if (input instanceof URL) { |
no outgoing calls
no test coverage detected