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