mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-13 05:13:41 +08:00
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
/** http请求头的content-type类型 */
|
|
export enum ContentType {
|
|
json = 'application/json',
|
|
formUrlencoded = 'application/x-www-form-urlencoded',
|
|
formData = 'multipart/form-data'
|
|
}
|