import { type SectionProperties } from "https://deno.land/x/docxml@5.15.3/src/properties/section-properties.ts";
All the formatting options that can be given on a text run (inline text).
Serializes to the <w:rPr> element. https://c-rex.net/projects/samples/ooxml/e1/Part4/OOXML_P4_DOCX_rPr_topic_ID0EIEKM.html
definition: { headers?: null | string | { first?: string | null; even?: string | null; odd?: string | null; }; footers?: null | string | { first?: string | null; even?: string | null; odd?: string | null; }; pageWidth?: null | Length; pageHeight?: null | Length; pageOrientation?: null | "landscape" | "portrait"; pageMargin?: { top?: null | Length; right?: null | Length; bottom?: null | Length; left?: null | Length; header?: null | Length; footer?: null | Length; gutter?: null | Length; }; isTitlePage?: null | boolean; }