classIncompleteDataErrorextendsSheetwriteErrorclass SheetwriteError
extends Error
implements SheetwriteErrorEnvelope
{
constructor(
code: SheetwriteErrorCode,
operation: SheetwriteErrorOperation,
message: string,
options?: SheetwriteErrorOptions,
);
code:
| "aborted"
| "blocked"
| "initialization-failed"
| "initialization-required"
// … 73 more lines — see the API reference
}classSheetwriteErrorextendsErrorimplementsSheetwriteErrorEnvelope{constructor(code:SheetwriteErrorCode,operation:SheetwriteErrorOperation,message:string,options?:SheetwriteErrorOptions,);code:|"aborted"|"blocked"|"initialization-failed"|"initialization-required"// … 73 more lines — see the API reference}classSheetwriteErrorextendsErrorimplementsSheetwriteErrorEnvelope{constructor(code:SheetwriteErrorCode,operation:SheetwriteErrorOperation,message:string,options?:SheetwriteErrorOptions,);code:|"aborted"|"blocked"|"initialization-failed"|"initialization-required"|"datasource-request-failed"|"renderer-fallback"|"export-failed"// … 75 more lines — see the API reference}Canonical envelope for thrown and callback-delivered Sheetwrite failures.API reference → {
constructor(
sheet:SheetIdtype SheetId = string;typeSheetId=string;typeSheetId=string;Stable identifier used to address a workbook sheet.API reference →,
capability:Extract<
QueryCapabilitytype QueryCapability =
| { status: "complete" }
| {
status: "incomplete";
loadedCells: number;
totalCells: number;
};typeQueryCapability=| { status:"complete" }| {status:"incomplete";loadedCells:number;totalCells:number;};typeQueryCapability=| { status:"complete" }| {status:"incomplete";loadedCells:number;totalCells:number;};Whether a query is complete for the currently loaded datasource pages.API reference →,