package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. process_id : int option;
    (*

    The process ID. The value should be less than or equal to 2147483647 (2^31-1).

    *)
  2. shell_process_id : int option;
    (*

    The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31-1).

    *)
}
val make : ?process_id:int option -> ?shell_process_id:int option -> unit -> t
val to_yojson : t -> Yojson.Safe.t