package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. progress_id : string;
    (*

    The ID that was introduced in the initial 'progressStart' event.

    *)
  2. message : string option;
    (*

    Optional, more detailed progress message. If omitted, the previous message (if any) is used.

    *)
  3. percentage : float option;
    (*

    Optional progress percentage to display (value range: 0 to 100). If omitted no percentage will be shown.

    *)
}
val make : progress_id:string -> ?message:string option -> ?percentage:float option -> unit -> t
val to_yojson : t -> Yojson.Safe.t