mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
22 lines
477 B
Objective-C
22 lines
477 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import <LegacyComponents/TGOverlayControllerWindow.h>
|
|
|
|
@interface TGProxyWindowController : TGOverlayWindowViewController
|
|
|
|
- (instancetype)initWithLight:(bool)light text:(NSString *)text shield:(bool)shield star:(bool)star;
|
|
|
|
- (void)dismissWithSuccess:(void (^)(void))completion increasedDelay:(bool)increasedDelay;
|
|
- (void)updateLayout;
|
|
|
|
@end
|
|
|
|
@interface TGProxyWindow : UIWindow
|
|
|
|
- (void)dismissWithSuccess;
|
|
+ (void)setDarkStyle:(bool)dark;
|
|
|
|
@end
|
|
|
|
|