mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-17 16:51:10 +00:00
18 lines
737 B
Objective-C
18 lines
737 B
Objective-C
#import <LegacyComponents/TGOverlayController.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TGMediaPickerSendActionSheetController : TGOverlayController
|
|
|
|
@property (nonatomic, copy) void (^send)(void);
|
|
@property (nonatomic, copy) void (^sendSilently)(void);
|
|
@property (nonatomic, copy) void (^sendWhenOnline)(void);
|
|
@property (nonatomic, copy) void (^schedule)(void);
|
|
@property (nonatomic, copy) void (^sendWithTimer)(void);
|
|
|
|
- (instancetype)initWithContext:(id<LegacyComponentsContext>)context isDark:(bool)isDark sendButtonFrame:(CGRect)sendButtonFrame canSendSilently:(bool)canSendSilently canSendWhenOnline:(bool)canSendWhenOnline canSchedule:(bool)canSchedule reminder:(bool)reminder hasTimer:(bool)hasTimer;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|