Skip to content
This repository was archived by the owner on Dec 19, 2021. It is now read-only.

Commit d0960da

Browse files
committed
update POD typings
1 parent 6d65a46 commit d0960da

File tree

1 file changed

+0
-72
lines changed

1 file changed

+0
-72
lines changed

src/typings/objc!MBProgressHUD.d.ts

Lines changed: 0 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ declare class MBBarProgressView extends UIView {
7575
declare class MBProgressHUD extends UIView {
7676
static HUDForView(view: UIView): MBProgressHUD;
7777

78-
static allHUDsForView(view: UIView): NSArray<any>;
79-
8078
static alloc(): MBProgressHUD; // inherited from NSObject
8179

8280
static appearance(): MBProgressHUD; // inherited from UIAppearance
@@ -101,16 +99,12 @@ declare class MBProgressHUD extends UIView {
10199
containerTypes: NSArray<typeof NSObject> | typeof NSObject[]
102100
): MBProgressHUD; // inherited from UIAppearance
103101

104-
static hideAllHUDsForViewAnimated(view: UIView, animated: boolean): number;
105-
106102
static hideHUDForViewAnimated(view: UIView, animated: boolean): boolean;
107103

108104
static new(): MBProgressHUD; // inherited from NSObject
109105

110106
static showHUDAddedToAnimated(view: UIView, animated: boolean): MBProgressHUD;
111107

112-
activityIndicatorColor: UIColor;
113-
114108
animationType: MBProgressHUDAnimation;
115109

116110
readonly backgroundView: MBBackgroundView;
@@ -119,14 +113,10 @@ declare class MBProgressHUD extends UIView {
119113

120114
readonly button: UIButton;
121115

122-
color: UIColor;
123-
124116
completionBlock: () => void;
125117

126118
contentColor: UIColor;
127119

128-
cornerRadius: number;
129-
130120
customView: UIView;
131121

132122
defaultMotionEffectsEnabled: boolean;
@@ -135,24 +125,10 @@ declare class MBProgressHUD extends UIView {
135125

136126
readonly detailsLabel: UILabel;
137127

138-
detailsLabelColor: UIColor;
139-
140-
detailsLabelFont: UIFont;
141-
142-
detailsLabelText: string;
143-
144-
dimBackground: boolean;
145-
146128
graceTime: number;
147129

148130
readonly label: UILabel;
149131

150-
labelColor: UIColor;
151-
152-
labelFont: UIFont;
153-
154-
labelText: string;
155-
156132
margin: number;
157133

158134
minShowTime: number;
@@ -163,71 +139,23 @@ declare class MBProgressHUD extends UIView {
163139

164140
offset: CGPoint;
165141

166-
opacity: number;
167-
168142
progress: number;
169143

170144
progressObject: NSProgress;
171145

172146
removeFromSuperViewOnHide: boolean;
173147

174-
readonly size: CGSize;
175-
176148
square: boolean;
177149

178-
taskInProgress: boolean;
179-
180-
xOffset: number;
181-
182-
yOffset: number;
183-
184150
constructor(o: { view: UIView });
185151

186-
constructor(o: { window: UIWindow });
187-
188-
hide(animated: boolean): void;
189-
190-
hideAfterDelay(animated: boolean, delay: number): void;
191-
192152
hideAnimated(animated: boolean): void;
193153

194154
hideAnimatedAfterDelay(animated: boolean, delay: number): void;
195155

196156
initWithView(view: UIView): this;
197157

198-
initWithWindow(window: UIWindow): this;
199-
200-
show(animated: boolean): void;
201-
202158
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;
231159
}
232160

233161
declare const enum MBProgressHUDAnimation {

0 commit comments

Comments
 (0)