import { HTTPMethod } from './types'; export interface APIRequest { _response?: Response; parameter?: any; path: string; method: HTTPMethod; contentType?: string; }