( options: HttpTransferCacheOptions, )
| 89 | * @publicApi |
| 90 | */ |
| 91 | export function withHttpTransferCacheOptions( |
| 92 | options: HttpTransferCacheOptions, |
| 93 | ): HydrationFeature<HydrationFeatureKind.HttpTransferCacheOptions> { |
| 94 | // This feature has no providers and acts as a flag to pass options to the HTTP transfer cache. |
| 95 | return hydrationFeature( |
| 96 | HydrationFeatureKind.HttpTransferCacheOptions, |
| 97 | ɵwithHttpTransferCache(options), |
| 98 | ); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Enables support for hydrating i18n blocks. |
no test coverage detected
searching dependent graphs…