UNPKG

@reactodia/workspace

Version:

Reactodia Workspace -- library for visual interaction with graphs in a form of a diagram.

13 lines 591 B
import { EntityElement, RelationLink } from '../editor/dataElements'; import { type FormInputGroupProps } from './input/formInputGroup'; export interface EditRelationFormProps { originalLink: RelationLink; source: EntityElement; target: EntityElement; onChangeTarget: (newTarget: RelationLink) => void; onAfterApply: () => void; onCancel: () => void; resolveInput: FormInputGroupProps['resolveInput']; } export declare function EditRelationForm(props: EditRelationFormProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=editRelationForm.d.ts.map