@ant-design/graphs
Version:
A React graph library based on Graphin
6 lines (5 loc) • 396 B
TypeScript
import type { Graph } from '@antv/g6';
import { ForwardRefExoticComponent, PropsWithChildren, PropsWithoutRef, RefAttributes } from 'react';
import type { FlowDirectionGraphOptions } from './types';
export declare const FlowDirectionGraph: ForwardRefExoticComponent<PropsWithoutRef<PropsWithChildren<FlowDirectionGraphOptions>> & RefAttributes<Graph>>;
export type { FlowDirectionGraphOptions };