@kintone/rest-api-client
Version:
Kintone REST API client for JavaScript
14 lines (13 loc) • 572 B
TypeScript
import type { KintoneRestAPIError } from "./KintoneRestAPIError";
export declare class KintoneAllRecordsError extends Error {
processedRecordsResult: any;
unprocessedRecords: any[];
error: KintoneRestAPIError;
errorIndex?: number;
numOfProcessedRecords: number;
numOfAllRecords: number;
private static parseErrorIndex;
private static extractErrorIndex;
private static buildErrorMessage;
constructor(processedRecordsResult: any, unprocessedRecords: any[], numOfAllRecords: number, error: KintoneRestAPIError, chunkLength: number);
}