Module Flow_ast.Literal

module RegExp: { ... };
type t('M) = {
  1. value: value,
  2. raw: string,
  3. comments: option(Syntax.t('M, unit)),
};
and value =
  1. | String(string)
  2. | Boolean(bool)
  3. | Null
  4. | Number(float)
  5. | BigInt(option(int64))
  6. | RegExp(RegExp.t)
;