package flow_parser

  1. Overview
  2. Docs
module Specifier : sig ... end
type declaration =
  1. | Declaration of Statement.t
  2. | Expression of Expression.t
type specifier =
  1. | ExportSpecifiers of Specifier.t list
  2. | ExportBatchSpecifier of Loc.t * Identifier.t option
type exportKind =
  1. | ExportType
  2. | ExportValue
type t = {
  1. default : bool;
  2. declaration : declaration option;
  3. specifiers : specifier option;
  4. source : (Loc.t * Literal.t) option;
  5. exportKind : exportKind;
}
OCaml

Innovation. Community. Security.