UNPKG

dmeditor

Version:

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

15 lines (14 loc) 373 B
import type { DMEData } from '../../core/types'; export interface EntityHeroText { heroPosition?: 'left' | 'right'; heroPositionMobile?: 'up' | 'down'; heroFullWidth?: boolean; gap?: number; settings?: { general?: DMEData.GeneralSettingType; }; } export interface EntityHeroTextChildren { hero: DMEData.Block; list: DMEData.Block; }