Module Values_1.TileStyleSource

Display options related to tiles on a sheet.

Sourcetype nonrec t = {
  1. backgroundColor : Color.t option;
    (*

    The background color of a tile.

    *)
  2. border : BorderStyle.t option;
    (*

    The border around a tile.

    *)
  3. borderRadius : Values_0.BorderRadius.t option;
    (*

    The border radius of a tile.

    *)
  4. padding : Values_0.Padding.t option;
    (*

    The padding of a tile.

    *)
}
Sourceval make : ?backgroundColor:??? -> ?border:??? -> ?borderRadius:??? -> ?padding:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Color.t | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Color.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t