UNPKG

ts-retrofit

Version:

A declarative and axios based retrofit implementation for JavaScript and TypeScript.

10 lines (9 loc) 301 B
import { Method } from "axios"; export type HttpMethod = Method; export declare const DATA_CONTENT_TYPES: string[]; export declare enum HttpContentType { urlencoded = "application/x-www-form-urlencoded", multipart = "multipart/form-data", json = "application/json", xml = "text/xml" }