1 import UIKit
2 
3 /**
4  Type-erased protocol for view props classes.
5  */
6 public protocol AnyViewProp: ViewManagerDefinitionComponent {
7   /**
8    Name of the view prop that JavaScript refers to.
9    */
10   var name: String { get }
11 
12   /**
13    Function that sets the underlying prop value for given view.
14    */
setnull15   func set(value: Any, onView: UIView, appContext: AppContext) throws
16 }
17