Spaces:
Sleeping
Sleeping
File size: 456 Bytes
cd6720a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { ClientRequestInterceptor } from '../interceptors/ClientRequest'
import { XMLHttpRequestInterceptor } from '../interceptors/XMLHttpRequest'
import { FetchInterceptor } from '../interceptors/fetch'
/**
* The default preset provisions the interception of requests
* regardless of their type (http/https/XMLHttpRequest).
*/
export default [
new ClientRequestInterceptor(),
new XMLHttpRequestInterceptor(),
new FetchInterceptor(),
] as const
|