import { FetchOptions } from "../net/utils"; export interface RequestClient { fetch(url: string, options?: FetchOptions): Promise; fetchRaw(url: string, options?: FetchOptions): Promise; get(url: string, options?: FetchOptions): Promise; post(url: string, options?: FetchOptions): Promise; patch(url: string, options?: FetchOptions): Promise; delete(url: string, options?: FetchOptions): Promise; }