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; tableCellProperty: TableCellPropertyJSON;
basedOn: string | null; basedOn: string | null;
link?: string | null | undefined; link?: string | null | undefined;
next?: string | null;
}; };
export type StylesJSON = { export type StylesJSON = {

View File

@ -78,7 +78,7 @@ export type TablePropertyJSON = {
insideH?: BorderJSON | null; insideH?: BorderJSON | null;
insideV?: BorderJSON | null; insideV?: BorderJSON | null;
} | null; } | null;
margins: TableCellMarginsJSON | null; margins?: TableCellMarginsJSON | null;
indent?: { indent?: {
width: number; width: number;
widthType: WidthType; widthType: WidthType;