package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type importKind =
  1. | ImportType
  2. | ImportTypeof
  3. | ImportValue
type !'M specifier =
  1. | ImportNamedSpecifiers of 'M named_specifier list
  2. | ImportNamespaceSpecifier of 'M * 'M Identifier.t
and !'M named_specifier = {
  1. kind : importKind option;
  2. local : 'M Identifier.t option;
  3. remote : 'M Identifier.t;
}
type !'M t = {
  1. importKind : importKind;
  2. source : 'M * StringLiteral.t;
  3. default : 'M Identifier.t option;
  4. specifiers : 'M specifier option;
}
OCaml

Innovation. Community. Security.