( kind: KindT, providers: Provider[], )
| 54 | } |
| 55 | |
| 56 | function makeHttpFeature<KindT extends HttpFeatureKind>( |
| 57 | kind: KindT, |
| 58 | providers: Provider[], |
| 59 | ): HttpFeature<KindT> { |
| 60 | return { |
| 61 | ɵkind: kind, |
| 62 | ɵproviders: providers, |
| 63 | }; |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Configures Angular's `HttpClient` service to be available for injection. |
no outgoing calls
no test coverage detected
searching dependent graphs…