( rNode: RElement, injector: Injector, isRootView = false, )
| 215 | * and accessing a corresponding slot in TransferState storage. |
| 216 | */ |
| 217 | export function retrieveHydrationInfo( |
| 218 | rNode: RElement, |
| 219 | injector: Injector, |
| 220 | isRootView = false, |
| 221 | ): DehydratedView | null { |
| 222 | return _retrieveHydrationInfoImpl(rNode, injector, isRootView); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Retrieves the necessary object from a given ViewRef to serialize: |
no test coverage detected
searching dependent graphs…