@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.
13 lines (12 loc) • 352 B
TypeScript
import { PropsWithChildren } from 'react';
type Position = 'left' | 'top' | 'right' | 'bottom';
type Props = {
isConnecting: boolean;
targetPortPosition: Position;
offset?: {
x?: number;
y?: number;
};
};
export declare const NodeAsPortWrapper: import('react').NamedExoticComponent<PropsWithChildren<Props>>;
export {};