Module Statement.DeclareClass

type t('M, 'T) = {
  1. id: Identifier.t('M, 'T),
  2. tparams: option(Type.TypeParams.t('M, 'T)),
  3. body: ('M, Type.Object.t('M, 'T)),
  4. extends: option(('M, Type.Generic.t('M, 'T))),
  5. mixins: list(('M, Type.Generic.t('M, 'T))),
  6. implements: option(Class.Implements.t('M, 'T)),
  7. comments: option(Syntax.t('M, unit)),
};