Skip to content
Sheetwrite

Sheetwrite / Documentation

DelimitedTextResourceLimits@sheetwrite/core

Resource ceilings shared by synchronous CSV and TSV parsing and encoding.

Resource ceilings shared by synchronous CSV and TSV parsing and encoding.

Members 7

maxInputBytes Maximum UTF-8 bytes accepted from one input string.
maxInputBytes: number;
maxOutputBytes Maximum UTF-8 bytes produced by one output string, including a BOM when present.
maxOutputBytes: number;
maxRows Maximum syntactically present records.
maxRows: number;
maxColumns Maximum fields in any record.
maxColumns: number;
maxCells Maximum fields across all records.
maxCells: number;
maxFieldBytes Maximum decoded UTF-8 bytes in one field.
maxFieldBytes: number;
maxWriterWindowRows Maximum rows fetched by an export writer in one packed store read.
maxWriterWindowRows: number;

Declaration

View full TypeScript declaration
export interface DelimitedTextResourceLimits {
maxInputBytes: number;
maxOutputBytes: number;
maxRows: number;
maxColumns: number;
maxCells: number;
maxFieldBytes: number;
maxWriterWindowRows: number;
}