package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Reason : sig ... end
type t = {
  1. reason : Reason.t;
    (*

    The reason for the event.

    *)
  2. thread_id : int;
    (*

    The identifier of the thread.

    *)
}
val make : reason:Reason.t -> thread_id:int -> t
val to_yojson : t -> Yojson.Safe.t