mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-04-05 03:49:43 +00:00
8 lines
222 B
Objective-C
8 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
|