UNPKG

dmeditor

Version:

dmeditor is a block-style visual editor. Data is in json format.

11 lines (10 loc) 263 B
import { DMEData } from '../../core/types'; interface CodeEntity { content: string; settings?: { general?: DMEData.GeneralSettingType; }; } declare const initCodeEntity: () => CodeEntity; export { initCodeEntity }; export type { CodeEntity };