Skip to content
Sheetwrite

Sheetwrite / Documentation

XlsxWorkbookOptions@sheetwrite/core

Shared options passed to every registered table and workbook XLSX backend.

Shared options passed to every registered table and workbook XLSX backend.

Members 4

signal Abort before or between bounded codec operations.
signal?: AbortSignal;
maxCells Cells accounted by the active conversion path; defaults to 1,000,000.
maxCells?: number;
resourceLimits Positive overrides for every XLSX resource dimension except maxCells.
resourceLimits?: Partial<Omit<XlsxResourceLimits, "maxCells">>;
onWarning
onWarning?: (warning: XlsxWorkbookWarning) => void;

Declaration

View full TypeScript declaration
export interface XlsxWorkbookOptions {
signal?: AbortSignal;
maxCells?: number;
resourceLimits?: Partial<Omit<XlsxResourceLimits, "maxCells">>;
onWarning?: (warning: XlsxWorkbookWarning) => void;
}