mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-22 05:24:29 +00:00
22 lines
383 B
Objective-C
22 lines
383 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import <LegacyComponents/TGOverlayControllerWindow.h>
|
|
|
|
@interface TGProxyWindowController : TGOverlayWindowViewController
|
|
|
|
- (instancetype)initWithLight:(bool)light;
|
|
|
|
- (void)dismissWithSuccess:(void (^)(void))completion;
|
|
- (void)updateLayout;
|
|
|
|
@end
|
|
|
|
@interface TGProxyWindow : UIWindow
|
|
|
|
- (void)dismissWithSuccess;
|
|
+ (void)setDarkStyle:(bool)dark;
|
|
|
|
@end
|
|
|
|
|