mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
23 lines
412 B
Objective-C
23 lines
412 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import <SSignalKit/SSignalKit.h>
|
|
|
|
#import "TGShareContext.h"
|
|
|
|
@interface TGUnauthorizedShareContext : NSObject
|
|
|
|
@end
|
|
|
|
@interface TGEncryptedShareContext : NSObject
|
|
|
|
@property (nonatomic, readonly) bool simplePassword;
|
|
@property (nonatomic, copy, readonly) bool (^verifyPassword)(NSString *);
|
|
|
|
@end
|
|
|
|
@interface TGShareContextSignal : NSObject
|
|
|
|
+ (SSignal *)shareContext;
|
|
|
|
@end
|