UNPKG

@redocly/theme

Version:

Shared UI components lib

17 lines (16 loc) 471 B
import React from 'react'; export type CatalogEntityNodeData = { label: string; entityType: string; entityKey: string; isRoot?: boolean; }; export type CatalogEntityRelationsNodeProps = { data: CatalogEntityNodeData; className?: string; }; export declare enum HandleType { Target = "target", Source = "source" } export declare function CatalogEntityRelationsNode({ data, className, }: CatalogEntityRelationsNodeProps): React.ReactElement;