package inquire

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

Module Inquire.MakeSource

Create a new implementation of Inquire to customize the prompts.

Parameters

module M : sig ... end

Signature

Sourceval confirm : ?default:bool -> string -> bool Lwt.t
Sourceval password : ?validate:(string -> (string, string) Lwt_result.t) -> string -> string Lwt.t
Sourceval input : ?validate:(string -> (string, string) Lwt_result.t) -> ?default:string -> string -> string Lwt.t
Sourceval raw_select : ?default:StdLabels.String.t -> options:StdLabels.String.t list -> string -> StdLabels.String.t Lwt.t
Sourceval select : ?default:StdLabels.String.t -> options:StdLabels.String.t list -> string -> StdLabels.String.t Lwt.t