/** * HollowCandlestickChart - chandeliers creux (convention Highcharts hollowcandlestick). * Variante du CandlestickChart : mèche low→high + corps open↔close, MAIS : * - couleur (trait/bordure) = clôture vs clôture PRÉCÉDENTE (hausse/baisse) ; * - remplissage = creux si close ≥ open (haussière), plein si close < open (baissière). * API canonique (référence Svelte, React/Vue doivent s'aligner) * * Props obligatoires : * data HollowCandlestickChartDatum[] - tableau {label, open, high, low, close} * label string * * Props optionnelles : * width number (défaut 480) * height number (défaut 240) * class string */ export type HollowCandlestickChartDatum = { label: string; open: number; high: number; low: number; close: number; }; type HollowCandlestickChartProps = { data: HollowCandlestickChartDatum[]; label: string; width?: number; height?: number; class?: string; }; declare const HollowCandlestickChart: import("svelte").Component; type HollowCandlestickChart = ReturnType; export default HollowCandlestickChart; //# sourceMappingURL=HollowCandlestickChart.svelte.d.ts.map