(ssrUniqueId: unknown)
| 434 | |
| 435 | /** Throws an error if the ssrUniqueId on the LDeferBlockDetails is not present */ |
| 436 | export function assertSsrIdDefined(ssrUniqueId: unknown) { |
| 437 | assertDefined( |
| 438 | ssrUniqueId, |
| 439 | 'Internal error: expecting an SSR id for a defer block that should be hydrated, but the id is not present', |
| 440 | ); |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Returns the size of an <ng-container>, using either the information |
no test coverage detected
searching dependent graphs…