UNPKG

huddle-record

Version:

Record is a Object-Relational Mapping (ORM) TypeScript plugin that makes it easy to work with data.

9 lines (8 loc) 292 B
import { AxiosRequestConfig, AxiosResponse } from 'axios'; import HttpRequestMethod from '../enums/httpRequestMethod'; export default interface HttpRequest { callback: () => Promise<AxiosResponse>; config?: AxiosRequestConfig; url: string; requestMethod: HttpRequestMethod; }