Module Flow_ast.Variable

type kind =
  1. | Var
  2. | Let
  3. | Const
;
let pp_kind: Format.formatter => kind => unit;
let show_kind: kind => string;