dmeditor
Version:
dmeditor is a block-style visual editor. Data is in json format.
16 lines (15 loc) • 364 B
TypeScript
import { DMEData } from '../../core/types';
export interface EntityText {
value: Array<{
type: string;
children: Array<{
text: string;
}>;
}>;
settings?: {
color?: string;
general?: DMEData.GeneralSettingType;
};
}
declare const initialTextEntity: () => EntityText;
export { initialTextEntity };