mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
12 lines
275 B
C
12 lines
275 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@class TGDataItem;
|
||
|
@class TGLiveUploadActorData;
|
||
|
|
||
|
@interface TGBridgeAudioEncoder : NSObject
|
||
|
|
||
|
- (instancetype)initWithURL:(NSURL *)url;
|
||
|
- (void)startWithCompletion:(void (^)(TGDataItem *, int32_t, TGLiveUploadActorData *))completion;
|
||
|
|
||
|
@end
|