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)),
};