package ocaml-webworker

  1. Overview
  2. Docs
type 'desc raw_entry = {
  1. name : string;
  2. kind : [ `Value | `Constructor | `Variant | `Label | `Module | `Modtype | `Type | `MethodCall ];
  3. desc : 'desc;
  4. info : 'desc;
}
type entry = string raw_entry
type application_context = {
  1. argument_type : string;
  2. labels : (string * string) list;
}
type t = {
  1. entries : entry list;
  2. context : [ `Unknown | `Application of application_context ];
}