bokuweb 2023-10-24 10:28:29 +09:00 committed by GitHub
parent 4bcaf5188e
commit b1eaee54a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ export type StyleJSON = {
tableCellProperty: TableCellPropertyJSON;
basedOn: string | null;
link?: string | null | undefined;
next?: string | null;
};
export type StylesJSON = {

View File

@ -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;