DCUniComponent+Support.h 571 B

12345678910111213141516171819202122232425
  1. //
  2. // DCUniComponent+Support.h
  3. //
  4. // Created by DCloud on 2020/11/2.
  5. // Copyright © 2020 DCloud. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <UIkit/UIkit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface DCUniComponent(Support)
  11. @property (nonatomic, readonly, strong) NSString *ref;
  12. @property (nonatomic, readonly, copy) NSString *type;
  13. @property (nonatomic, readonly, strong) NSDictionary *styles;
  14. @property (nonatomic, readonly, strong) NSDictionary *attributes;
  15. @property (nonatomic, readonly, strong) NSArray *events;
  16. @end
  17. NS_ASSUME_NONNULL_END