@dndbuilder.com/react
Version:
Drag and drop builder for React
13 lines (12 loc) • 466 B
TypeScript
import { BuilderConfig } from '../../../types';
import { Theme } from '../../../types/theme';
import { Block } from '../../../types/block';
import { FC } from 'react';
export type EditorProps = {
content: Record<string, Block>;
className?: string;
builderConfig?: BuilderConfig;
theme?: Theme;
} & Omit<React.HTMLAttributes<HTMLDivElement>, "content" | "className">;
export declare const Editor: FC<EditorProps>;
//# sourceMappingURL=editor.d.ts.map