Type alias BatchObjectsReturn<T>

BatchObjectsReturn<T>: {
    allResponses: (string | ErrorObject<T>)[];
    elapsedSeconds: number;
    errors: Record<number, ErrorObject<T>>;
    hasErrors: boolean;
    uuids: Record<number, string>;
}

Type Parameters

  • T

Type declaration

  • allResponses: (string | ErrorObject<T>)[]
  • elapsedSeconds: number
  • errors: Record<number, ErrorObject<T>>
  • hasErrors: boolean
  • uuids: Record<number, string>