package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module RegExp : sig ... end
type t = {
  1. value : value;
  2. raw : string;
}
and value =
  1. | String of string
  2. | Boolean of bool
  3. | Null
  4. | Number of float
  5. | RegExp of RegExp.t