Module Ezr_toml.TYPES

type toml_handle
type section_option = {
  1. option_name : string;
  2. option_comments : string list;
  3. option_value : Ez_toml.V1.TOML.Types.value;
}
type section = {
  1. section_name : string;
  2. section_comments : string list;
  3. section_options : section_option list;
}