FLEXManager+Private.h 585 B

123456789101112131415161718192021
  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 FLEXGlobalsTableViewControllerEntry;
  10. @interface FLEXManager ()
  11. /// An array of FLEXGlobalsTableViewControllerEntry objects that have been registered by the user.
  12. @property (nonatomic, readonly, strong) NSArray<FLEXGlobalsTableViewControllerEntry *> *userGlobalEntries;
  13. @property (nonatomic, readonly, strong) NSDictionary<NSString *, FLEXCustomContentViewerFuture> *customContentTypeViewers;
  14. @end