* Helper function to create an object that represents a Hydration feature.
(
ɵkind: FeatureKind,
ɵproviders: Provider[] = [],
ɵoptions: unknown = {},
)
| 57 | * Helper function to create an object that represents a Hydration feature. |
| 58 | */ |
| 59 | function hydrationFeature<FeatureKind extends HydrationFeatureKind>( |
| 60 | ɵkind: FeatureKind, |
| 61 | ɵproviders: Provider[] = [], |
| 62 | ɵoptions: unknown = {}, |
| 63 | ): HydrationFeature<FeatureKind> { |
| 64 | return {ɵkind, ɵproviders}; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Disables HTTP transfer cache. Effectively causes HTTP requests to be performed twice: once on the |
no outgoing calls
no test coverage detected
searching dependent graphs…