You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
441 B
23 lines
441 B
11 months ago
|
export enum ResultEnum {
|
||
|
SUCCESS = 0,
|
||
|
ERROR = 1,
|
||
|
TIMEOUT = 401,
|
||
|
TOKEN_INVALID = 403,
|
||
|
}
|
||
|
|
||
|
export enum RequestEnum {
|
||
|
GET = 'POST',
|
||
|
POST = 'POST',
|
||
|
PUT = 'POST',
|
||
|
DELETE = 'POST',
|
||
|
}
|
||
|
|
||
|
export enum ContentTypeEnum {
|
||
|
// json
|
||
|
JSON = 'application/json;charset=UTF-8',
|
||
|
// form-data qs
|
||
|
FORM_URLENCODED = 'application/x-www-form-urlencoded;charset=UTF-8',
|
||
|
// form-data upload
|
||
|
FORM_DATA = 'multipart/form-data;charset=UTF-8',
|
||
|
}
|