mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
475 B
Objective-C
18 lines
475 B
Objective-C
#import <WatchKit/WatchKit.h>
|
|
|
|
@class TGIndexPath;
|
|
|
|
@interface TGTableAlignment : NSObject
|
|
|
|
@property (nonatomic, assign) bool deletion;
|
|
@property (nonatomic, assign) NSInteger pos;
|
|
@property (nonatomic, assign) NSInteger len;
|
|
|
|
@end
|
|
|
|
@interface TGTableDeltaUpdater : NSObject
|
|
|
|
+ (void)updateTable:(WKInterfaceTable *)table oldData:(NSArray *)oldData newData:(NSArray *)newData controllerClassForIndexPath:(Class (^)(TGIndexPath *indexPath))controllerClassForIndexPath;
|
|
|
|
@end
|