UNPKG

@apptane/react-ui-charts

Version:
9 lines (8 loc) 255 B
import { ScaleLinear } from "d3-scale"; import { ChartAxisProps } from "./ChartAxis.types.js"; export interface ChartLinearAxisProps extends ChartAxisProps<number> { /** * Scale function. */ scale: ScaleLinear<number, number>; }