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