Skip to main content

BatchResponse<T>

type BatchResponse<T> = {
code: number;
data: T;
headers: Record<string, string>;
};

Response from a single request within a batch.

Type Parameters

Type Parameter
T

Properties

code

code: number;

data

data: T;

headers

headers: Record<string, string>;