mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
20 lines
331 B
Objective-C
20 lines
331 B
Objective-C
//
|
|
// LOTSizeInterpolator.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/13/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import "LOTValueInterpolator.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LOTSizeInterpolator : LOTValueInterpolator
|
|
|
|
- (CGSize)sizeValueForFrame:(NSNumber *)frame;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|