Module Values.ThemeValue

Describes the configuration of a theme's properties.

Sourcetype nonrec t = {
  1. value : String_.t option;
    (*

    The value of a theme property.

    *)
  2. children : ThemeValuesList.t option;
    (*

    A list of key-value pairs that define the theme's properties.

    *)
}
Sourceval make : ?value:String_.t -> ?children:ThemeValuesList.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t