interface FormattingOptionsimport { type FormattingOptions } from "https://dotland.deno.dev/std@0.223.0/ini/mod.ts"; Options for providing formatting marks. Propertiesoptionalassignment: stringThe character used to assign a value to a key; defaults to '='. optionallineBreak: "\n" | "\r\n"Character(s) used to break lines in the config file; defaults to '\n'. Ignored on parse. optionalcommentChar: "#" | ";" | "//"Mark to use for setting comments; expects '#', ';', '//', defaults to '#' unless another mark is found. optionalpretty: booleanUse a plain assignment char or pad with spaces; defaults to false. Ignored on parse. optionaldeduplicate: booleanFilter duplicate keys from INI string output; defaults to false to preserve data parity.