mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
492 B
Objective-C
14 lines
492 B
Objective-C
#ifndef NotificationService_BridgingHeader_h
|
|
#define NotificationService_BridgingHeader_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <BuildConfig/BuildConfig.h>
|
|
|
|
@protocol SyncProvider <NSObject>
|
|
|
|
- (void)addIncomingMessageWithRootPath:(NSString * _Nonnull)rootPath accountId:(int64_t)accountId encryptionParameters:(DeviceSpecificEncryptionParameters * _Nonnull)encryptionParameters peerId:(int64_t)peerId messageId:(int32_t)messageId completion:(void (^)(int32_t))completion;
|
|
|
|
@end
|
|
|
|
#endif
|