import type { RequestOptions } from './requestOptions'; export type RequestInterceptor = (options: RequestOptions) => RequestOptions | Promise; export type ResponseInterceptor = (response: any) => any | Promise; export type ErrorInterceptor = (error: any) => any | Promise;