1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | import {
|
11 | TextProps,
|
12 | TextPropsIOS,
|
13 | TextPropsAndroid,
|
14 | AccessibilityProps,
|
15 | AccessibilityPropsIOS,
|
16 | AccessibilityPropsAndroid,
|
17 | TextInputProps,
|
18 | TextInputIOSProps,
|
19 | TextInputAndroidProps,
|
20 | ViewProps,
|
21 | ViewPropsIOS,
|
22 | ViewPropsAndroid,
|
23 | ScrollViewProps,
|
24 | ScrollViewPropsIOS,
|
25 | ScrollViewPropsAndroid,
|
26 | InputAccessoryViewProps,
|
27 | ActivityIndicatorProps,
|
28 | ActivityIndicatorIOSProps,
|
29 | DrawerLayoutAndroidProps,
|
30 | ProgressBarAndroidProps,
|
31 | RefreshControlProps,
|
32 | RefreshControlPropsIOS,
|
33 | RefreshControlPropsAndroid,
|
34 | ImageSourcePropType,
|
35 | ImageProps,
|
36 | ImagePropsIOS,
|
37 | ImagePropsAndroid,
|
38 | ImageBackgroundProps,
|
39 | FlatListProps,
|
40 | VirtualizedListProps,
|
41 | SectionListProps,
|
42 | ModalProps,
|
43 | TouchableWithoutFeedbackProps,
|
44 | TouchableHighlightProps,
|
45 | TouchableOpacityProps,
|
46 | TouchableNativeFeedbackProps,
|
47 | ButtonProps,
|
48 | StatusBarProps,
|
49 | StatusBarPropsIOS,
|
50 | StatusBarPropsAndroid,
|
51 | SwitchProps,
|
52 | SwitchPropsIOS,
|
53 | } from 'react-native';
|
54 |
|
55 |
|
56 |
|
57 |
|
58 |
|
59 |
|
60 |
|
61 |
|
62 | export type TextProperties = TextProps;
|
63 |
|
64 |
|
65 | export type TextPropertiesIOS = TextPropsIOS;
|
66 |
|
67 |
|
68 | export type TextPropertiesAndroid = TextPropsAndroid;
|
69 |
|
70 |
|
71 | export type AccessibilityProperties = AccessibilityProps;
|
72 |
|
73 |
|
74 | export type AccessibilityPropertiesIOS = AccessibilityPropsIOS;
|
75 |
|
76 |
|
77 | export type AccessibilityPropertiesAndroid = AccessibilityPropsAndroid;
|
78 |
|
79 |
|
80 | export type TextInputProperties = TextInputProps;
|
81 |
|
82 |
|
83 | export type TextInputIOSProperties = TextInputIOSProps;
|
84 |
|
85 |
|
86 | export type TextInputAndroidProperties = TextInputAndroidProps;
|
87 |
|
88 |
|
89 | export type ViewProperties = ViewProps;
|
90 |
|
91 |
|
92 | export type ViewPropertiesIOS = ViewPropsIOS;
|
93 |
|
94 |
|
95 | export type ViewPropertiesAndroid = ViewPropsAndroid;
|
96 |
|
97 |
|
98 | export type ScrollViewProperties = ScrollViewProps;
|
99 |
|
100 |
|
101 | export type ScrollViewPropertiesIOS = ScrollViewPropsIOS;
|
102 |
|
103 |
|
104 | export type ScrollViewPropertiesAndroid = ScrollViewPropsAndroid;
|
105 |
|
106 |
|
107 | export type InputAccessoryViewProperties = InputAccessoryViewProps;
|
108 |
|
109 |
|
110 | export type ActivityIndicatorProperties = ActivityIndicatorProps;
|
111 |
|
112 |
|
113 | export type ActivityIndicatorIOSProperties = ActivityIndicatorIOSProps;
|
114 |
|
115 |
|
116 | export type DrawerLayoutAndroidProperties = DrawerLayoutAndroidProps;
|
117 |
|
118 |
|
119 | export type ProgressBarAndroidProperties = ProgressBarAndroidProps;
|
120 |
|
121 |
|
122 | export type RefreshControlProperties = RefreshControlProps;
|
123 |
|
124 |
|
125 | export type RefreshControlPropertiesIOS = RefreshControlPropsIOS;
|
126 |
|
127 |
|
128 | export type RefreshControlPropertiesAndroid = RefreshControlPropsAndroid;
|
129 |
|
130 |
|
131 | export type ImagePropertiesSourceOptions = ImageSourcePropType;
|
132 |
|
133 |
|
134 | export type ImageProperties = ImageProps;
|
135 |
|
136 |
|
137 | export type ImagePropertiesIOS = ImagePropsIOS;
|
138 |
|
139 |
|
140 | export type ImagePropertiesAndroid = ImagePropsAndroid;
|
141 |
|
142 |
|
143 | export type ImageBackgroundProperties = ImageBackgroundProps;
|
144 |
|
145 |
|
146 | export type FlatListProperties<ItemT> = FlatListProps<ItemT>;
|
147 |
|
148 |
|
149 | export type VirtualizedListProperties<ItemT> = VirtualizedListProps<ItemT>;
|
150 |
|
151 |
|
152 | export type SectionListProperties<ItemT> = SectionListProps<ItemT>;
|
153 |
|
154 |
|
155 | export type ModalProperties = ModalProps;
|
156 |
|
157 |
|
158 | export type TouchableWithoutFeedbackProperties = TouchableWithoutFeedbackProps;
|
159 |
|
160 |
|
161 | export type TouchableHighlightProperties = TouchableHighlightProps;
|
162 |
|
163 |
|
164 | export type TouchableOpacityProperties = TouchableOpacityProps;
|
165 |
|
166 |
|
167 | export type TouchableNativeFeedbackProperties = TouchableNativeFeedbackProps;
|
168 |
|
169 |
|
170 | export type ButtonProperties = ButtonProps;
|
171 |
|
172 |
|
173 | export type StatusBarProperties = StatusBarProps;
|
174 |
|
175 |
|
176 | export type StatusBarPropertiesIOS = StatusBarPropsIOS;
|
177 |
|
178 |
|
179 | export type StatusBarPropertiesAndroid = StatusBarPropsAndroid;
|
180 |
|
181 |
|
182 | export type SwitchProperties = SwitchProps;
|
183 |
|
184 |
|
185 | export type SwitchPropertiesIOS = SwitchPropsIOS;
|