package cordova-plugin-dialogs

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type button_response =
  1. | Ok
  2. | Cancel
  3. | Back_button
val alert : string -> ?cb:(unit -> unit) -> ?title:string -> ?button_text:string -> unit -> unit
val confirm : string -> ?cb:(button_response -> unit) -> ?title:string -> ?button_labels:string array -> unit -> unit
val prompt : string -> ?cb:(button_response -> unit) -> ?title:string -> ?button_label:string array -> ?default_text:string -> unit -> unit
val beep : int -> unit