mirror of
https://github.com/danog/Telegram.git
synced 2025-01-06 04:58:56 +01:00
18 lines
479 B
C
18 lines
479 B
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
|