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