Module JSX.Attribute

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