package inquirer_oc

  1. Overview
  2. Docs
type choice = {
  1. word : string;
  2. value : string;
}
type question = {
  1. name : string;
  2. prompt_type : Types.prompt_type;
  3. message : string;
  4. choices : choice list;
  5. page_size : int option;
}