mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-30 01:11:46 +00:00
25 lines
777 B
Objective-C
25 lines
777 B
Objective-C
//
|
|
// LOTShapeGradientFill.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/26/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "LOTAnimatablePointValue.h"
|
|
#import "LOTAnimatableNumberValue.h"
|
|
|
|
@interface LOTShapeGradientFill : NSObject
|
|
|
|
- (instancetype)initWithJSON:(NSDictionary *)jsonDictionary frameRate:(NSNumber *)frameRate;
|
|
|
|
@property (nonatomic, readonly) NSNumber *numberOfColors;
|
|
@property (nonatomic, readonly) LOTAnimatablePointValue *startPoint;
|
|
@property (nonatomic, readonly) LOTAnimatablePointValue *endPoint;
|
|
@property (nonatomic, readonly) LOTAnimatableNumberValue *gradient;
|
|
@property (nonatomic, readonly) LOTAnimatableNumberValue *opacity;
|
|
@property (nonatomic, readonly) BOOL evenOddFillRule;
|
|
|
|
@end
|