mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 08:59:48 +01:00
18 lines
479 B
Objective-C
18 lines
479 B
Objective-C
#import <Foundation/Foundation.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
|