dmeditor
Version:
dmeditor is a block-style visual editor. Data is in json format.
13 lines (12 loc) • 372 B
TypeScript
import React from 'react';
import type { DME, DMEData } from '../../types/dmeditor';
interface BlockListProps {
blockData: DMEData.BlockList;
path: Array<number | string>;
allowedTypes?: string[];
isEmbed?: boolean;
direction?: 'vertical' | 'horizontal';
mode: DME.Mode;
}
export declare const BlockListRender: React.FC<BlockListProps>;
export {};