(...types: Type<unknown>[])
| 86 | * hydration info would not be applied to T data structures. |
| 87 | */ |
| 88 | export function resetTViewsFor(...types: Type<unknown>[]) { |
| 89 | for (const type of types) { |
| 90 | getComponentDef(type)!.tView = null; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | export function hydrate( |
| 95 | doc: Document, |
no test coverage detected
searching dependent graphs…