module Value: sig .. end
type value
A Toml value. Covers Toml integers, floats, booleans, strings, dates. Also
has constructors for tables and arrays.
type array
A Toml array. May contain any Toml data type except for tables.
type table = value Toml.Table.t
module To: sig .. end
module Of: sig .. end