@matthewgapp/solidjs-flow
Version:
React Flow - A highly customizable React library for building node-based editors and interactive flow charts.
11 lines • 444 B
TypeScript
import { type HandleProps } from '@xyflow/system';
import { JSX } from 'solid-js';
export interface HandleComponentProps extends HandleProps, Omit<JSX.HTMLAttributes<HTMLDivElement>, 'id'> {
}
declare function HandleComponent(_p: HandleComponentProps): JSX.Element;
/**
* The Handle component is a UI element that is used to connect nodes.
*/
export declare const Handle: typeof HandleComponent;
export {};
//# sourceMappingURL=index.d.ts.map