Skip to content
Sheetwrite

Sheetwrite / Documentation

IncompleteDataError@sheetwrite/core

Error thrown when an operation requires datasource cells that are not loaded.

Error thrown when an operation requires datasource cells that are not loaded.

Members 2

constructor
constructor(sheet: SheetId, capability: Extract<QueryCapability, { status: "incomplete"; }>);
capability
capability: { status: "incomplete"; loadedCells: number; totalCells: number; }

Declaration

View full TypeScript declaration
class IncompleteDataError extends Error {
constructor(
sheet: SheetId,
capability: Extract<
QueryCapability,
{
status: "incomplete";
}
>,
);
capability: {
status: "incomplete";
loadedCells: number;
totalCells: number;
};
}