UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

14 lines (13 loc) 333 B
import { TableWidthTypeApi, TableRowHeightTypeApi } from './enums'; export interface TableCellPosition { rowIndex: number; cellIndex: number; } export interface TableWidth { type: TableWidthTypeApi; value: number; } export interface TableRowHeight { type: TableRowHeightTypeApi; value: number; }