MBMLayerPosition.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Specifies position of a layer that is added via addStyleLayer method. */
  4. NS_SWIFT_NAME(LayerPosition)
  5. __attribute__((visibility ("default")))
  6. @interface MBMLayerPosition : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithAbove:(nullable NSString *)above
  12. below:(nullable NSString *)below
  13. at:(nullable NSNumber *)at NS_REFINED_FOR_SWIFT;
  14. /** Layer should be positioned above specified layer id. */
  15. @property (nonatomic, readonly, nullable, copy) NSString *above;
  16. /** Layer should be positioned below specified layer id. */
  17. @property (nonatomic, readonly, nullable, copy) NSString *below;
  18. /** Layer should be positioned at specified index in a layers stack. */
  19. @property (nonatomic, readonly, nullable) NSNumber *at NS_REFINED_FOR_SWIFT;
  20. @end