UNPKG

dmeditor

Version:

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

13 lines (12 loc) 296 B
import { DMEData } from '../../core/types'; export interface EntityTabsData { settings?: { general?: DMEData.GeneralSettingType; }; } export interface EntityTabsBlock extends DMEData.BlockWithChildren { meta: { tabKey: string | number; title: string; }; }