MBMStylePropertyValueKind.h 770 B

1234567891011121314151617
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Describes the kind of a style property value. */
  4. // NOLINTNEXTLINE(modernize-use-using)
  5. typedef NS_ENUM(NSInteger, MBMStylePropertyValueKind)
  6. {
  7. /** The property value is not defined. */
  8. MBMStylePropertyValueKindUndefined,
  9. /** The property value is a constant. */
  10. MBMStylePropertyValueKindConstant,
  11. /** The property value is a style [expression](https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions). */
  12. MBMStylePropertyValueKindExpression,
  13. /** Property value is a style [transition](https://docs.mapbox.com/mapbox-gl-js/style-spec/#transition). */
  14. MBMStylePropertyValueKindTransition
  15. } NS_SWIFT_NAME(StylePropertyValueKind);