package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type (!'M, !'T) id =
  1. | Identifier of ('M, 'T) Identifier.t
  2. | Literal of 'T * 'M StringLiteral.t
and !'M module_kind =
  1. | CommonJS of 'M
  2. | ES of 'M
and (!'M, !'T) t = {
  1. id : ('M, 'T) id;
  2. body : 'M * ('M, 'T) Block.t;
  3. kind : 'M module_kind;
  4. comments : ('M, unit) Syntax.t option;
}