mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 02:20:07 +00:00
17 lines
453 B
Objective-C
17 lines
453 B
Objective-C
//
|
|
// CAAnimationGroup+LOTAnimatableGroup.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 7/19/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import "LOTAnimatableValue.h"
|
|
|
|
@interface CAAnimationGroup (LOTAnimatableGroup)
|
|
|
|
+ (nullable CAAnimationGroup *)LOT_animationGroupForAnimatablePropertiesWithKeyPaths:(nonnull NSDictionary<NSString *, id<LOTAnimatableValue>> *)properties;
|
|
|
|
@end
|