mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
22 lines
445 B
Objective-C
22 lines
445 B
Objective-C
//
|
|
// LOTAnimationView_Internal.h
|
|
// Lottie
|
|
//
|
|
// Created by Brandon Withrow on 12/7/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import "LOTAnimationView.h"
|
|
|
|
typedef enum : NSUInteger {
|
|
LOTConstraintTypeAlignToBounds,
|
|
LOTConstraintTypeAlignToLayer,
|
|
LOTConstraintTypeNone
|
|
} LOTConstraintType;
|
|
|
|
@interface LOTAnimationView () <CAAnimationDelegate>
|
|
|
|
@property (nonatomic, copy, nullable) NSString *cacheKey;
|
|
|
|
@end
|