mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-15 16:36:36 +00:00
17 lines
324 B
Objective-C
17 lines
324 B
Objective-C
//
|
|
// CommentsNode.h
|
|
// ASDKgram
|
|
//
|
|
// Created by Hannah Troisi on 3/21/16.
|
|
// Copyright © 2016 Hannah Troisi. All rights reserved.
|
|
//
|
|
|
|
#import <AsyncDisplayKit/AsyncDisplayKit.h>
|
|
#import "CommentFeedModel.h"
|
|
|
|
@interface CommentsNode : ASTextCellNode
|
|
|
|
- (void)updateWithCommentFeedModel:(CommentFeedModel *)feed;
|
|
|
|
@end
|