Module Values_0.SpacingSource

The configuration of spacing (often a margin or padding).

Sourcetype nonrec t = {
  1. top : Length.t option;
    (*

    Define the top spacing.

    *)
  2. bottom : Length.t option;
    (*

    Define the bottom spacing.

    *)
  3. left : Length.t option;
    (*

    Define the left spacing.

    *)
  4. right : Length.t option;
    (*

    Define the right spacing.

    *)
}
Sourceval make : ?top:??? -> ?bottom:??? -> ?left:??? -> ?right:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Length.t ]) 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