Spaces:
Paused
Paused
File size: 344 Bytes
9ada4bc |
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
|