// // LOTShape.h // LottieAnimator // // Created by Brandon Withrow on 12/14/15. // Copyright © 2015 Brandon Withrow. All rights reserved. // #import #import @interface LOTShapeGroup : NSObject - (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)jsonDictionary; @property (nonatomic, readonly, nonnull) NSString *keyname; @property (nonatomic, readonly, nonnull) NSArray *items; + (id _Nullable)shapeItemWithJSON:(NSDictionary * _Nonnull)itemJSON; @end