1234567891011121314151617181920 |
- //
- // LOTArrayInterpolator.h
- // Lottie
- //
- // Created by brandon_withrow on 7/27/17.
- // Copyright © 2017 Airbnb. All rights reserved.
- //
- #import "LOTValueInterpolator.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface LOTArrayInterpolator : LOTValueInterpolator
- - (NSArray *)numberArrayForFrame:(NSNumber *)frame;
- @end
- NS_ASSUME_NONNULL_END
|