UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

12 lines (11 loc) 388 B
import { Component } from 'react'; export interface RadialAxisArcProps { index: number; scale: any; stroke: ((index: number) => string) | string; strokeDasharray: ((index: number) => string) | string; } export declare class RadialAxisArc extends Component<RadialAxisArcProps> { static defaultProps: Partial<RadialAxisArcProps>; render(): JSX.Element; }