-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
63 lines (56 loc) · 1.89 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* @author youxuan E-mail:[email protected]
* @Description 网络客户端
*/
import {XFClient} from "./xxf_http/XFClient";
import {XFClientBuilder} from "./xxf_http/XFClientBuilder";
import {Interceptor, HttpInterceptor} from "./xxf_http/Interceptor";
import {Cache} from "./xxf_http/cache/Cache";
import {DefaultCache} from "./xxf_http/cache/DefaultCache";
import {ResponseBody} from "./xxf_http/models/ResponseBody";
import {Exception} from './xxf_base/exceptions/Exception';
import {HttpException} from './xxf_base/exceptions/HttpException';
import {NullPointException} from './xxf_base/exceptions/NullPointException';
import {Stack} from './xxf_base/datastructure/Stack';
export {
XFClient,
XFClientBuilder,
Interceptor,
DefaultCache,
Cache,
ResponseBody,
HttpInterceptor,
Exception,
NullPointException,
HttpException,
Stack,
}
import {BaseItemView, BaseItemProps} from './xxf_component/list/BaseItemView';
import {SimpleBaseItemView} from './xxf_component/list/SimpleBaseItemView';
import {XFButton, XFButtonProps} from './xxf_component/button/XFButton';
import {XFSwitch} from './xxf_component/button/XFSwitch';
import {XFVerificationCodeInput} from './xxf_component/input/XFVerificationCodeInput';
import {XFInputErrorNoticeProps} from './xxf_component/input/XFInputErrorNoticeProps';
import {XFTabBar} from './xxf_component/tab/XFTabBar';
export {
BaseItemView,
BaseItemProps,
SimpleBaseItemView,
XFButton,
XFSwitch,
XFButtonProps,
XFVerificationCodeInput,
XFInputErrorNoticeProps,
XFTabBar,
}
import {AndroidUtils, OnAndroidBackPressListener} from './xxf_utils/AndroidUtils';
import {StorageUtils} from './xxf_utils/StorageUtils';
import {RAUtils} from './xxf_utils/RAUtils';
import {NetUtils} from './xxf_utils/NetUtils';
export {
AndroidUtils,
OnAndroidBackPressListener,
StorageUtils,
RAUtils,
NetUtils,
}