package flow_parser

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Jsdoc.ParamSource

Sourcetype optionality =
  1. | NotOptional
  2. | Optional
  3. | OptionalWithDefault of string
Sourcetype info = {
  1. description : string option;
  2. optional : optionality;
}
Sourcetype path =
  1. | Name
  2. | Element of path
  3. | Member of path * string
Sourcetype t = (path * info) list