mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00

git-subtree-dir: submodules/lottie-ios git-subtree-mainline: 76e5a7fab6b0222780f346530cdbeeff96f3e105 git-subtree-split: d40e390fbe6d7ef3b417876af6fdce5e4d2aa335
23 lines
545 B
Objective-C
23 lines
545 B
Objective-C
//
|
|
// LottieFilesUrl.h
|
|
// lottie-ios
|
|
//
|
|
// Created by Fabio Nuno on 06/08/17.
|
|
// Copyright © 2017 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface LottieFilesURL : NSObject
|
|
|
|
- (nullable instancetype)initWithURL:(nonnull NSURL *)url;
|
|
|
|
@property (nonatomic, readonly) int ID;
|
|
@property (nonatomic, nonnull, readonly) NSURL *baseURL;
|
|
@property (nonatomic, nonnull, readonly) NSURL *jsonURL;
|
|
@property (nonatomic, nonnull, readonly) NSString *animationName;
|
|
|
|
+(BOOL)isValidURL:(nonnull NSURL *)url;
|
|
|
|
@end
|