diff --git a/src/lib/docx-pleading.ts b/src/lib/docx-pleading.ts index e9030aa..cd8cf66 100644 --- a/src/lib/docx-pleading.ts +++ b/src/lib/docx-pleading.ts @@ -13,6 +13,7 @@ import { BorderStyle, Footer, LevelFormat, + PageNumber, } from "docx"; import pkg from "file-saver"; const { saveAs } = pkg; @@ -33,6 +34,9 @@ export interface PleadingInput { bodyHtml?: string; // rich HTML body body?: string; // legacy plain text fallback footnotes?: PleadingFootnote[]; + footerLeft?: string; + footerCenter?: string; + footerRight?: string; // user text prepended to "Page X of Y" } const FONT = "Bookman Old Style";