@airpower/web 0.2.9 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { MoneyDirection } from '../components';
|
|
2
|
-
import { HttpHeader, HttpStatus } from '../util';
|
|
3
2
|
/**
|
|
4
3
|
* # 全局配置
|
|
5
4
|
*
|
|
@@ -253,15 +252,15 @@ export declare class WebConfig {
|
|
|
253
252
|
/**
|
|
254
253
|
* ### `AccessToken` 对应的 `Key`
|
|
255
254
|
*/
|
|
256
|
-
static authorizationHeaderKey:
|
|
255
|
+
static authorizationHeaderKey: string;
|
|
257
256
|
/**
|
|
258
257
|
* ### 全局 `http` 请求返回 成功状态码
|
|
259
258
|
*/
|
|
260
|
-
static successCode:
|
|
259
|
+
static successCode: number;
|
|
261
260
|
/**
|
|
262
261
|
* ### 全局 `http` 请求返回 登录状态码
|
|
263
262
|
*/
|
|
264
|
-
static unAuthorizeCode:
|
|
263
|
+
static unAuthorizeCode: number;
|
|
265
264
|
/**
|
|
266
265
|
* ### 超时时间 毫秒
|
|
267
266
|
* 超时后请求会自动断开并抛出异常
|