Files
YTLitePlus/Tweaks/YouTubeHeader/ELMContainerNode.h
2023-06-27 09:54:41 +02:00

9 lines
222 B
Objective-C

#import "ELMElement.h"
#import "ASDisplayNode.h"
@interface ELMContainerNode : ASDisplayNode
@property (atomic, strong, readwrite) ELMElement *element;
- (void)addYogaChild:(id)child;
- (void)addSubnode:(id)subnode;
@end