package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module ExportSpecifier : sig ... end
type specifier =
  1. | ExportSpecifiers of ExportSpecifier.t list
  2. | ExportBatchSpecifier of Loc.t * Identifier.t option
type t = {
  1. declaration : Statement.t option;
  2. specifiers : specifier option;
  3. source : (Loc.t * Literal.t) option;
  4. exportKind : Statement.exportKind;
}