/** * Packaging the workbook a native chart points at, for DOCX. * * The XML is shared with the pptx side — see `chart-parts` in * `@json-to-office/shared/rendering`, which explains why these bytes have to * exist at all. What lives here is only the part a shared module cannot own: * turning those five parts into a ZIP, with adm-zip, which is this core's * archive library and not the other's. */ import type { ChartPartSeries } from '@json-to-office/shared/rendering'; /** * Build the xlsx package a chart's `c:externalData` points at. * * Entry order comes from the shared part list rather than from iteration * order here, so the ZIP central directory is a function of the data alone. */ export declare function buildChartWorkbook(series: readonly ChartPartSeries[]): Uint8Array; export { CHART_WORKBOOK_SHEET_NAME, categoryReference, columnLetter, seriesNameReference, seriesValueReference, } from '@json-to-office/shared/rendering'; //# sourceMappingURL=chartWorkbook.d.ts.map