claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
20 lines • 533 B
TypeScript
declare const AreaChart: import("svelte").Component<{
data?: any[];
width?: number;
height?: number;
margin?: Record<string, any>;
colors?: any[];
animate?: boolean;
showPoints?: boolean;
showGrid?: boolean;
curve?: string;
fillOpacity?: number;
strokeWidth?: number;
xLabel?: string;
yLabel?: string;
xIsTime?: boolean;
dateFormat?: string;
}, {}, "">;
type AreaChart = ReturnType<typeof AreaChart>;
export default AreaChart;
//# sourceMappingURL=AreaChart.svelte.d.ts.map