UNPKG

@kintone/rest-api-client

Version:
14 lines (13 loc) 572 B
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); }