UNPKG

ts-retrofit3

Version:

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

17 lines (16 loc) 636 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HttpContentType = exports.DATA_CONTENT_TYPES = void 0; exports.DATA_CONTENT_TYPES = [ "application/x-www-form-urlencoded", "multipart/form-data", "application/json", "text/xml", ]; var HttpContentType; (function (HttpContentType) { HttpContentType["urlencoded"] = "application/x-www-form-urlencoded"; HttpContentType["multipart"] = "multipart/form-data"; HttpContentType["json"] = "application/json"; HttpContentType["xml"] = "text/xml"; })(HttpContentType = exports.HttpContentType || (exports.HttpContentType = {}));