Skip to content
Sheetwrite

Sheetwrite / Documentation

DelimitedTextResourceError@sheetwrite/core

Stable resource-limit failure raised before the next oversized parse or encode allocation.

Stable resource-limit failure raised before the next oversized parse or encode allocation.

Members 7

constructor
constructor(resource: keyof DelimitedTextResourceLimits, limit: number, actual: number, operation: DelimitedTextOperation);
actual
actual: number;
code
code: "DELIMITED_TEXT_RESOURCE_LIMIT";
limit
limit: number;
name
name: "DelimitedTextResourceError";
operation
operation: DelimitedTextOperation;
resource
resource: keyof DelimitedTextResourceLimits

Declaration

View full TypeScript declaration
class DelimitedTextResourceError extends RangeError {
constructor(
resource: keyof DelimitedTextResourceLimits,
limit: number,
actual: number,
operation: DelimitedTextOperation,
);
actual: number;
code: "DELIMITED_TEXT_RESOURCE_LIMIT";
limit: number;
name: "DelimitedTextResourceError";
operation: DelimitedTextOperation;
resource: keyof DelimitedTextResourceLimits;
}