mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-23 12:06:36 +08:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
/** 请求超时时间 */
|
|
export const REQUEST_TIMEOUT = 15 * 1000;
|
|
|
|
/** 请求头的content-type类型 */
|
|
export enum ContentType {
|
|
json = 'application/json',
|
|
formUrlEncoded = 'application/x-www-form-urlencoded'
|
|
}
|