recharts
Version:
React charts
7 lines (5 loc) • 350 B
text/typescript
import { Props as PolarAngleAxisProps } from './PolarAngleAxis';
import { Props as PolarRadiusAxisProps } from './PolarRadiusAxis';
// TODO: 1. what is the type of scale? 2. Should we include scale to each Props?
export type AngleAxisProps = PolarAngleAxisProps & { scale: any };
export type RadiusAxisProps = PolarRadiusAxisProps & { scale: any };