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 Maximum logical cells processed.
maxCells?: number;

Maximum logical cells processed. Defaults to 1,000,000.

resourceLimits Overrides for all other XLSX resource dimensions.
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;
}