Module Flow_ast.Literal

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