mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
418 B
Objective-C
17 lines
418 B
Objective-C
#import "PGPhotoProcessPass.h"
|
|
|
|
@class PGPhotoTool;
|
|
|
|
@interface PGPhotoToolComposer : PGPhotoProcessPass
|
|
|
|
@property (nonatomic, readonly) NSArray *tools;
|
|
@property (nonatomic, readonly) NSArray *advancedTools;
|
|
@property (nonatomic, readonly) bool shouldBeSkipped;
|
|
@property (nonatomic, assign) CGSize imageSize;
|
|
|
|
- (void)addPhotoTool:(PGPhotoTool *)tool;
|
|
- (void)addPhotoTools:(NSArray *)tools;
|
|
- (void)compose;
|
|
|
|
@end
|