import { RequestTypes } from '../enums/request-types'; export interface RequestObject { method: RequestTypes; url: string; send: (body?: { [key: string]: any; }) => Promise; }