( opts: HotStateReloadOptions<S>, )
| 112 | | HotStateReloadRoutesOptions<S>; |
| 113 | |
| 114 | function isViewReloadOptions<S>( |
| 115 | opts: HotStateReloadOptions<S>, |
| 116 | ): opts is HotStateReloadViewOptions<S> { |
| 117 | return "viewModule" in opts; |
| 118 | } |
| 119 | |
| 120 | function isRoutesReloadOptions<S>( |
| 121 | opts: HotStateReloadOptions<S>, |
no outgoing calls
no test coverage detected