claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
18 lines • 493 B
TypeScript
declare const PieChart: import("svelte").Component<{
data?: any[];
width?: number;
height?: number;
innerRadius?: number;
outerRadius?: any;
colors?: any[];
showLabels?: boolean;
showValues?: boolean;
showPercentages?: boolean;
animate?: boolean;
padAngle?: number;
cornerRadius?: number;
labelThreshold?: number;
}, {}, "">;
type PieChart = ReturnType<typeof PieChart>;
export default PieChart;
//# sourceMappingURL=PieChart.svelte.d.ts.map