summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLAccountManager_Private.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLAccountManager_Private.h')
-rw-r--r--platform/darwin/src/MGLAccountManager_Private.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/platform/darwin/src/MGLAccountManager_Private.h b/platform/darwin/src/MGLAccountManager_Private.h
deleted file mode 100644
index 4bf7963182..0000000000
--- a/platform/darwin/src/MGLAccountManager_Private.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#import "MGLAccountManager.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-/// NSUserDefaults key that controls developer account type
-FOUNDATION_EXTERN NSString * const MGLMapboxAccountTypeKey;
-
-@interface MGLAccountManager (Private)
-
-/// Returns the shared instance of the `MGLAccountManager` class.
-@property (class, nonatomic, readonly) MGLAccountManager *sharedManager;
-
-/// The current global access token.
-@property (atomic, nullable) NSString *accessToken;
-
-/// The API base URL that is used to access Mapbox resources. The default base URL is `https://api.mapbox.com`. If `nil`, the Mapbox default base API URL is in use.
-@property (atomic, readwrite, nullable) NSURL *apiBaseURL;
-
-#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
-/// The current global SKU.
-@property (class, atomic, readonly) NSString *skuToken;
-#endif
-
-@end
-
-NS_ASSUME_NONNULL_END