Sylvain Filoni
update gradio client
9ada4bc
raw
history blame contribute delete
344 Bytes
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