import type { RequestOptions } from './instance' export type IAdaptorRequestResponseType
= Promise<
Record (
url: string,
options?: Omit
post (
url: string,
options: Partial
patch (
url: string,
options: Partial
delete (
url: string,
options?: Omit
put (
url: string,
options: Partial
}
>