UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

9 lines (8 loc) 338 B
import { FC, Ref } from '@dineug/r-html'; import { DrawRelationship as DrawRelationshipType } from '../../../../engine/modules/editor/state'; export type DrawRelationshipProps = { root: Ref<HTMLDivElement>; draw: DrawRelationshipType; }; declare const DrawRelationship: FC<DrawRelationshipProps>; export default DrawRelationship;