You can search for identifiers within the package.
in-package search v0.2.0
sihl-email
Sihl_email.Template
include module type of struct include Sihl.Contract.Email_template end
type t = {
id : string;
label : string;
text : string;
html : string option;
created_at : Ptime.t;
updated_at : Ptime.t;
}
val name : string
module type Sig = Sihl.Contract.Email_template.Sig
val to_sexp : t -> Sexplib0.Sexp.t
val pp : Format.formatter -> t -> unit
val of_yojson : Yojson__Safe.t -> t option
val to_yojson : t -> [> `Assoc of (string * [> `Null | `String of string ]) list ]
val set_label : string -> t -> t
val set_text : string -> t -> t
val set_html : string option -> t -> t
val replace_element : string -> string -> string -> string
val render : (string * string) list -> string -> string option -> string * string option
val email_of_template : ?template:t -> Sihl__.Contract_email.t -> (string * string) list -> Sihl__.Contract_email.t Lwt.t
val log_src : Logs.src
module Logs : Logs.LOG
module Make (Repo : sig ... end) : Sihl.Contract.Email_template.Sig
module PostgreSql : sig ... end
module MariaDb : sig ... end