Module Statement.VariableDeclaration

module Declarator: { ... };
type t('M, 'T) = {
  1. declarations: list(Declarator.t('M, 'T)),
  2. kind: kind,
  3. comments: option(Syntax.t('M, unit)),
};
and kind =
  1. | Var
  2. | Let
  3. | Const
;