()
| 228 | * @see {@link provideHttpClient} |
| 229 | */ |
| 230 | export function withNoXsrfProtection(): HttpFeature<HttpFeatureKind.NoXsrfProtection> { |
| 231 | return makeHttpFeature(HttpFeatureKind.NoXsrfProtection, [ |
| 232 | { |
| 233 | provide: XSRF_ENABLED, |
| 234 | useValue: false, |
| 235 | }, |
| 236 | ]); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Add JSONP support to the configuration of the current `HttpClient` instance. |
no test coverage detected
searching dependent graphs…