Module ReactServerDOMSource

Sourceval render_html : ?skipRoot:bool -> ?env:[ `Dev | `Prod ] -> ?debug:bool -> ?filter_stack_frame:(string -> string -> bool) -> ?timeout:float -> ?progressive_chunk_size:int -> ?bootstrapScriptContent:string -> ?bootstrapScripts:string list -> ?bootstrapModules:string list -> ?identifier_prefix:string -> React.element -> (string * ((string -> unit Lwt.t) -> unit Lwt.t)) Lwt.t
Sourceval render_model : ?env:[ `Dev | `Prod ] -> ?debug:bool -> ?filter_stack_frame:(string -> string -> bool) -> ?subscribe:(string -> unit Lwt.t) -> React.element -> unit Lwt.t
Sourceval render_model_value : ?env:[ `Dev | `Prod ] -> ?debug:bool -> ?filter_stack_frame:(string -> string -> bool) -> ?subscribe:(string -> unit Lwt.t) -> React.model_value -> unit Lwt.t
Sourceval create_action_response : ?env:[ `Dev | `Prod ] -> ?debug:bool -> ?filter_stack_frame:(string -> string -> bool) -> ?subscribe:(string -> unit Lwt.t) -> React.model_value Lwt.t -> unit Lwt.t
Sourcetype server_function =
  1. | FormData of Yojson.Basic.t array -> Js.FormData.t -> React.model_value Lwt.t
  2. | Body of Yojson.Basic.t array -> React.model_value Lwt.t
Sourceval decodeReply : ?temporaryReferences:(string -> Yojson.Basic.t option) -> string -> (Yojson.Basic.t array, string) result
Sourceval decodeFormDataReply : ?temporaryReferences:(string -> Yojson.Basic.t option) -> Js.FormData.t -> (Yojson.Basic.t array * Js.FormData.t, string) result
Sourceval decodeAction : Js.FormData.t -> (string * Js.FormData.t) option
Sourcemodule type FunctionReferences = sig ... end