recharts
Version:
React charts
11 lines (10 loc) • 443 B
TypeScript
export type PolarChartOptions = {
cx: number | string;
cy: number | string;
startAngle: number;
endAngle: number;
innerRadius: number | string;
outerRadius: number | string;
};
export declare const updatePolarOptions: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<PolarChartOptions, "polarOptions/updatePolarOptions">;
export declare const polarOptionsReducer: import("redux").Reducer<PolarChartOptions>;