You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
512 B

  1. //
  2. // FLEXManager+Private.h
  3. // PebbleApp
  4. //
  5. // Created by Javier Soto on 7/26/14.
  6. // Copyright (c) 2014 Pebble Technology. All rights reserved.
  7. //
  8. #import "FLEXManager.h"
  9. @class FLEXGlobalsEntry;
  10. @interface FLEXManager ()
  11. /// An array of FLEXGlobalsEntry objects that have been registered by the user.
  12. @property (nonatomic, readonly) NSArray<FLEXGlobalsEntry *> *userGlobalEntries;
  13. @property (nonatomic, readonly) NSDictionary<NSString *, FLEXCustomContentViewerFuture> *customContentTypeViewers;
  14. @end