Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 02:00:55 +00:00
co-authored by renee-png
parent 19f1902153
commit 668abb205b
+9
View File
@@ -23,6 +23,14 @@ export interface PleadingFootnote {
text: string;
}
export interface PleadingSignature {
/** Multi-line block placed under the signature line (name, bar no., firm, etc.) */
block: string;
/** Optional PNG/JPG bytes of a scanned signature placed above the line */
imageBytes?: ArrayBuffer | Uint8Array;
imageType?: "png" | "jpg" | "jpeg";
}
export interface PleadingInput {
courtType: "CIRCUIT" | "COUNTY";
circuit: string; // e.g. "ELEVENTH"
@@ -37,6 +45,7 @@ export interface PleadingInput {
footerLeft?: string;
footerCenter?: string;
footerRight?: string; // user text prepended to "Page X of Y"
signature?: PleadingSignature;
}
const FONT = "Bookman Old Style";