mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
16 lines
512 B
Objective-C
16 lines
512 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 (^schedule)(void);
|
|
|
|
- (instancetype)initWithContext:(id<LegacyComponentsContext>)context sendButtonFrame:(CGRect)sendButtonFrame canSendSilently:(bool)canSendSilently canSchedule:(bool)canSchedule;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|