vimr
Version:
## 安装 ``` pnpm add vimr ``` ## 使用
23 lines (22 loc) • 688 B
TypeScript
/** http请求头的content-type类型 */
export declare enum EnumContentType {
json = "application/json",
formUrlencoded = "application/x-www-form-urlencoded",
formData = "multipart/form-data"
}
/** 数据类型 */
export declare enum EnumDataType {
number = "[object Number]",
string = "[object String]",
boolean = "[object Boolean]",
null = "[object Null]",
undefined = "[object Undefined]",
object = "[object Object]",
array = "[object Array]",
date = "[object Date]",
regexp = "[object RegExp]",
set = "[object Set]",
map = "[object Map]",
file = "[object File]",
function = "[object Function]"
}