fix: missing replace json types IndexAccessType (#551)

main
skanehira 2022-10-26 17:32:07 +09:00 committed by GitHub
parent ec8ddb97fe
commit b44c05e13c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ import { HeightRule } from "../table-row";
import { TextDirectionType } from "../table-cell"; import { TextDirectionType } from "../table-cell";
import { ShadingJSON } from "./shading"; import { ShadingJSON } from "./shading";
import { TableLayoutType } from "../table"; import { TableLayoutType } from "../table";
import { DeleteJSON, InsertJSON } from ".."; import { DeleteJSONData, InsertJSONData } from "..";
export type TableCellChildJSON = ParagraphJSON | TableJSON; export type TableCellChildJSON = ParagraphJSON | TableJSON;
@ -35,8 +35,8 @@ export type TableRowPropertyJSON = {
heightRule: HeightRule | null; heightRule: HeightRule | null;
widthAfter: number | null; widthAfter: number | null;
widthBefore: number | null; widthBefore: number | null;
del?: DeleteJSON["data"]; del?: DeleteJSONData;
ins?: InsertJSON["data"]; ins?: InsertJSONData;
}; };
export type TableCellJSON = { export type TableCellJSON = {