mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 03:20:09 +00:00
20 lines
370 B
Objective-C
20 lines
370 B
Objective-C
//
|
|
// LOTNumberInterpolator.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/11/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "LOTValueInterpolator.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface LOTNumberInterpolator : LOTValueInterpolator
|
|
|
|
- (CGFloat)floatValueForFrame:(NSNumber *)frame;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|