You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
421 B

import { IElement, IElementPosition } from '../Element'
import { IRow } from '../Row'
export interface ITd {
id?: string;
x?: number;
y?: number;
width?: number;
height?: number;
colspan: number;
rowspan: number;
value: IElement[];
isLastRowTd?: boolean;
isLastColTd?: boolean;
isLastTd?: boolean;
rowIndex?: number;
colIndex?: number;
rowList?: IRow[];
positionList?: IElementPosition[];
}