UNPKG

dmeditor

Version:

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

15 lines (14 loc) 356 B
import { DMEData } from '../../core/types'; export interface EntityAccordion { multiOpen?: boolean; settings: { iconOnLeft?: boolean; general?: DMEData.GeneralSettingType; }; } export interface AccordtionChildType extends DMEData.BlockWithChildren { meta?: { tabKey: string | number; title: string; }; }