From b1eaee54a5cf9a5b66ee6102a45a501cb0ee7d4c Mon Sep 17 00:00:00 2001 From: bokuweb Date: Tue, 24 Oct 2023 10:28:29 +0900 Subject: [PATCH] fix (#660) --- docx-wasm/js/json/styles.ts | 1 + docx-wasm/js/json/table.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docx-wasm/js/json/styles.ts b/docx-wasm/js/json/styles.ts index 962d46d..a601c32 100644 --- a/docx-wasm/js/json/styles.ts +++ b/docx-wasm/js/json/styles.ts @@ -14,6 +14,7 @@ export type StyleJSON = { tableCellProperty: TableCellPropertyJSON; basedOn: string | null; link?: string | null | undefined; + next?: string | null; }; export type StylesJSON = { diff --git a/docx-wasm/js/json/table.ts b/docx-wasm/js/json/table.ts index 73d00c0..5b4db3a 100644 --- a/docx-wasm/js/json/table.ts +++ b/docx-wasm/js/json/table.ts @@ -78,7 +78,7 @@ export type TablePropertyJSON = { insideH?: BorderJSON | null; insideV?: BorderJSON | null; } | null; - margins: TableCellMarginsJSON | null; + margins?: TableCellMarginsJSON | null; indent?: { width: number; widthType: WidthType;