UNPKG

dmeditor

Version:

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

12 lines (11 loc) 389 B
import type { DMEData } from '../../types/dmeditor'; interface BlockListProps { blockData: DMEData.BlockList; path: Array<number>; allowedTypes?: string[] | string; isEmbed?: boolean; direction?: 'vertical' | 'horizontal'; mode: 'edit' | 'view'; } export declare const BlockListRender: (props: BlockListProps) => import("react/jsx-runtime").JSX.Element; export {};