package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type id =
  1. | Identifier of Identifier.t
  2. | Literal of Loc.t * Literal.t
type module_kind =
  1. | CommonJS of Loc.t
  2. | ES of Loc.t
type t = {
  1. id : id;
  2. body : Loc.t * Block.t;
  3. kind : module_kind;
}