@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
10 lines (9 loc) • 415 B
TypeScript
import { RootState } from '../../engine/state';
type Props = {
onDragStart: () => void;
onDragEnd: () => void;
onStartPreview: (event: MouseEvent, tableId: string | null, columnId: string | null) => void;
onEndPreview: () => void;
};
export declare function createVisualization(state: RootState, props: Props): import('d3-selection').Selection<SVGSVGElement, undefined, null, undefined>;
export {};