PropBuilder

trait PropBuilder[P[_, _]]

This trait builds objects representing properties, which are typically on the left hand side of the prop := value syntax.

This trait builds objects representing properties, which are typically on the left hand side of the prop := value syntax.

See also: com.raquo.domtypes.generic.builders.canonical.CanonicalPropBuilder

Type Params
P

DOM Property, canonically com.raquo.domtypes.generic.keys.Prop

class Object
trait Matchable
class Any

Value members

Abstract methods

protected def prop[V, DomV](key: String, codec: Codec[V, DomV]): P[V, DomV]

Create a DOM Property

Create a DOM Property

Concrete methods

@inline
protected def doubleProp(key: String): P[Double, Double]
@inline
protected def intProp(key: String): P[Int, Int]
@inline
protected def stringProp(key: String): P[String, String]