package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
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 float
  6. | RegExp of RegExp.t