Module JSX.MemberExpression

type t('M, 'T) = ('M, t'('M, 'T));
and _object('M, 'T) =
  1. | Identifier(Identifier.t('M, 'T))
  2. | MemberExpression(t('M, 'T))
;
and t'('M, 'T) = {
  1. _object: _object('M, 'T),
  2. property: Identifier.t('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__object: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => _object('M, 'T) => unit;
let show__object: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => _object('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;