Skip to content

Commit b1eaee5

Browse files
authored
fix (#660)
1 parent 4bcaf51 commit b1eaee5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docx-wasm/js/json/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export type StyleJSON = {
1414
tableCellProperty: TableCellPropertyJSON;
1515
basedOn: string | null;
1616
link?: string | null | undefined;
17+
next?: string | null;
1718
};
1819

1920
export type StylesJSON = {

docx-wasm/js/json/table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export type TablePropertyJSON = {
7878
insideH?: BorderJSON | null;
7979
insideV?: BorderJSON | null;
8080
} | null;
81-
margins: TableCellMarginsJSON | null;
81+
margins?: TableCellMarginsJSON | null;
8282
indent?: {
8383
width: number;
8484
widthType: WidthType;

0 commit comments

Comments
 (0)