@nodeject/ui-components
Version:
UI library for non-trivial components
12 lines (11 loc) • 320 B
TypeScript
import * as React from 'react';
export interface EdgeConnectorsCoordinatesProps {
xSource?: number;
ySource?: number;
xTarget?: number;
yTarget?: number;
}
export interface EdgeProps extends EdgeConnectorsCoordinatesProps {
type: number;
}
export declare const Edge: React.SFC<EdgeProps>;