mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-17 08:24:48 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
22 lines
514 B
Objective-C
22 lines
514 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "DeepLinkParser.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSUInteger, InAppFeatureHighlightType) {
|
|
InAppFeatureHighlightTypeNone,
|
|
InAppFeatureHighlightTypeTrackRecorder,
|
|
InAppFeatureHighlightTypeICloud,
|
|
};
|
|
|
|
@interface DeepLinkInAppFeatureHighlightData : NSObject
|
|
|
|
@property(nonatomic, readonly) DeeplinkUrlType urlType;
|
|
@property(nonatomic, readonly) InAppFeatureHighlightType feature;
|
|
|
|
- (instancetype)init:(DeeplinkUrlType)urlType;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|