@@ -75,8 +75,6 @@ declare class MBBarProgressView extends UIView {
75
75
declare class MBProgressHUD extends UIView {
76
76
static HUDForView ( view : UIView ) : MBProgressHUD ;
77
77
78
- static allHUDsForView ( view : UIView ) : NSArray < any > ;
79
-
80
78
static alloc ( ) : MBProgressHUD ; // inherited from NSObject
81
79
82
80
static appearance ( ) : MBProgressHUD ; // inherited from UIAppearance
@@ -101,16 +99,12 @@ declare class MBProgressHUD extends UIView {
101
99
containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ]
102
100
) : MBProgressHUD ; // inherited from UIAppearance
103
101
104
- static hideAllHUDsForViewAnimated ( view : UIView , animated : boolean ) : number ;
105
-
106
102
static hideHUDForViewAnimated ( view : UIView , animated : boolean ) : boolean ;
107
103
108
104
static new ( ) : MBProgressHUD ; // inherited from NSObject
109
105
110
106
static showHUDAddedToAnimated ( view : UIView , animated : boolean ) : MBProgressHUD ;
111
107
112
- activityIndicatorColor : UIColor ;
113
-
114
108
animationType : MBProgressHUDAnimation ;
115
109
116
110
readonly backgroundView : MBBackgroundView ;
@@ -119,14 +113,10 @@ declare class MBProgressHUD extends UIView {
119
113
120
114
readonly button : UIButton ;
121
115
122
- color : UIColor ;
123
-
124
116
completionBlock : ( ) => void ;
125
117
126
118
contentColor : UIColor ;
127
119
128
- cornerRadius : number ;
129
-
130
120
customView : UIView ;
131
121
132
122
defaultMotionEffectsEnabled : boolean ;
@@ -135,24 +125,10 @@ declare class MBProgressHUD extends UIView {
135
125
136
126
readonly detailsLabel : UILabel ;
137
127
138
- detailsLabelColor : UIColor ;
139
-
140
- detailsLabelFont : UIFont ;
141
-
142
- detailsLabelText : string ;
143
-
144
- dimBackground : boolean ;
145
-
146
128
graceTime : number ;
147
129
148
130
readonly label : UILabel ;
149
131
150
- labelColor : UIColor ;
151
-
152
- labelFont : UIFont ;
153
-
154
- labelText : string ;
155
-
156
132
margin : number ;
157
133
158
134
minShowTime : number ;
@@ -163,71 +139,23 @@ declare class MBProgressHUD extends UIView {
163
139
164
140
offset : CGPoint ;
165
141
166
- opacity : number ;
167
-
168
142
progress : number ;
169
143
170
144
progressObject : NSProgress ;
171
145
172
146
removeFromSuperViewOnHide : boolean ;
173
147
174
- readonly size : CGSize ;
175
-
176
148
square : boolean ;
177
149
178
- taskInProgress : boolean ;
179
-
180
- xOffset : number ;
181
-
182
- yOffset : number ;
183
-
184
150
constructor ( o : { view : UIView } ) ;
185
151
186
- constructor ( o : { window : UIWindow } ) ;
187
-
188
- hide ( animated : boolean ) : void ;
189
-
190
- hideAfterDelay ( animated : boolean , delay : number ) : void ;
191
-
192
152
hideAnimated ( animated : boolean ) : void ;
193
153
194
154
hideAnimatedAfterDelay ( animated : boolean , delay : number ) : void ;
195
155
196
156
initWithView ( view : UIView ) : this;
197
157
198
- initWithWindow ( window : UIWindow ) : this;
199
-
200
- show ( animated : boolean ) : void ;
201
-
202
158
showAnimated ( animated : boolean ) : void ;
203
-
204
- showAnimatedWhileExecutingBlock ( animated : boolean , block : ( ) => void ) : void ;
205
-
206
- showAnimatedWhileExecutingBlockCompletionBlock (
207
- animated : boolean ,
208
- block : ( ) => void ,
209
- completion : ( ) => void
210
- ) : void ;
211
-
212
- showAnimatedWhileExecutingBlockOnQueue (
213
- animated : boolean ,
214
- block : ( ) => void ,
215
- queue : NSObject
216
- ) : void ;
217
-
218
- showAnimatedWhileExecutingBlockOnQueueCompletionBlock (
219
- animated : boolean ,
220
- block : ( ) => void ,
221
- queue : NSObject ,
222
- completion : ( ) => void
223
- ) : void ;
224
-
225
- showWhileExecutingOnTargetWithObjectAnimated (
226
- method : string ,
227
- target : any ,
228
- object : any ,
229
- animated : boolean
230
- ) : void ;
231
159
}
232
160
233
161
declare const enum MBProgressHUDAnimation {
0 commit comments