Module JSX.Attribute

type ('M, 'T) t = 'M * ('M, 'T) t'
and ('M, 'T) name =
  1. | Identifier of ('M, 'T) Identifier.t
  2. | NamespacedName of ('M, 'T) NamespacedName.t
and ('M, 'T) value =
  1. | StringLiteral of 'T * 'M StringLiteral.t
  2. | ExpressionContainer of 'T * ('M, 'T) ExpressionContainer.t
and ('M, 'T) t' = {
  1. name : ('M, 'T) name;
  2. value : ('M, 'T) value option;
}
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string
val pp_name : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) name -> unit
val show_name : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) name -> string
val pp_value : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) value -> unit
val show_value : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) value -> string
val pp_t' : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t' -> unit
val show_t' : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t' -> string