package spin

  1. Overview
  2. Docs
type file = {
  1. source : Base.string;
  2. destination : Base.string;
}
val file_of_sexp : Sexplib0.Sexp.t -> file
type cst =
  1. | Name of Base.string
  2. | Description of Base.string
  3. | Message of Base.string
  4. | Cfg_string of Prompt_cfg.string_cfg
  5. | Cfg_list of Prompt_cfg.list_cfg
  6. | Cfg_confirm of Prompt_cfg.confirm_cfg
  7. | File of file
val cst_of_sexp : Sexplib0.Sexp.t -> cst
type t = {
  1. name : Base.string;
  2. description : Base.string;
  3. message : Base.string Base.option;
  4. models : (Base.string * Jingoo.Jg_types.tvalue) Base.list;
  5. files : file Base.list;
}
type doc = {
  1. name : Base.string;
  2. description : Base.string;
}
val path : string
val doc_of_cst : cst Base.list -> doc
val t_of_cst : use_defaults:bool -> models:(Base.string * Jingoo.Jg_types.tvalue) Base.List.t -> global_context:Global_context.t Base.option -> cst Base.list -> t