UNPKG

@synergycodes/axiom

Version:

A React library for creating node-based UIs and diagram-driven applications. Perfect for React Flow users, providing ready-to-use node templates and components that work seamlessly with React Flow's ecosystem.

9 lines (8 loc) 290 B
import { PropsWithChildren } from 'react'; type Position = 'left' | 'top' | 'right' | 'bottom'; type Props = { isConnecting: boolean; targetPortPosition: Position; }; export declare const NodeAsPortWrapper: import('react').NamedExoticComponent<PropsWithChildren<Props>>; export {};