-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.js
36 lines (28 loc) · 768 Bytes
/
index.js
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
import React from 'react';
import {XImage, XText, XView} from './lib/widget/WidgetBase';
import XFlatList, {RefreshStatus} from './lib/widget/XFlatList';
import FlattenStyle, {ResetStyle, SplitStyle, XSize, XTSize} from './lib/utils/StyleUtils';
import XWidget from './lib/widget/XWidget';
import XStorage from './lib/storage/XStorage'
import HttpRequest from './lib/http/HttpRequest'
import {XHttp, XHttpConfig} from './lib/http/HttpUtils';
import HttpConfig, {XHttpConst} from './lib/http/HttpConfig';
export {
XHttp,
XHttpConst,
XHttpConfig,
HttpConfig,
HttpRequest,
XView,
XText,
XImage,
XFlatList,
RefreshStatus,
XSize,
XTSize,
ResetStyle,
SplitStyle,
FlattenStyle,
XWidget,
XStorage
};