Module Flow_ast.Variance

type t('M) = ('M, t'('M));
and kind =
  1. | Plus
  2. | Minus
  3. | Readonly
  4. | In
  5. | Out
  6. | InOut
;
and t'('M) = {
  1. kind: kind,
  2. comments: option(Syntax.t('M, unit)),
};
let pp: (Format.formatter => 'M => unit) => Format.formatter => t('M) => unit;
let show: (Format.formatter => 'M => unit) => t('M) => string;
let pp_kind: Format.formatter => kind => unit;
let show_kind: kind => string;
let pp_t': (Format.formatter => 'M => unit) => Format.formatter => t'('M) => unit;
let show_t': (Format.formatter => 'M => unit) => t'('M) => string;