fix: missing replace json types IndexAccessType (#551)
parent
ec8ddb97fe
commit
b44c05e13c
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in New Issue