import { type FetchConfig } from '@refactorjs/ofetch'; import { type FetchResponse } from 'ofetch'; export type HTTPRequest = FetchConfig & { body?: Record; }; export type HTTPResponse = FetchResponse;