mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
23 lines
493 B
Objective-C
23 lines
493 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>
|
|
|
|
- (CALayer * _Nullable)layerForKey:(NSString * _Nonnull)keyname;
|
|
- (NSArray * _Nonnull)compositionLayers;
|
|
|
|
@end
|