devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
8 lines (7 loc) • 527 B
TypeScript
import { ColorModelInfoCache } from '../../../caches/hashed-caches/color-model-info-cache';
import { ShadingInfoCache } from '../../../caches/hashed-caches/shading-info-cache';
import { TableCellProperties } from '../../../tables/properties/table-cell-properties';
export declare class JSONTableCellPropertiesConverter {
static convertFromJSON(obj: any, colorModelInfoCache: ColorModelInfoCache, shadingInfoCache: ShadingInfoCache): TableCellProperties;
static convertToJSON(source: TableCellProperties): any;
}