box-typescript-sdk-gen
Version:
Official Box TypeScript Generated SDK
22 lines • 631 B
TypeScript
import { SerializedData } from '../serialization/json.js';
import { ByteStream } from '../internal/utils.js';
export interface FetchResponse {
/**
* URL of the response */
readonly url?: string;
/**
* HTTP status code of the response */
readonly status: number;
/**
* Response body of the response */
readonly data?: SerializedData;
/**
* Streamed content of the response */
readonly content?: ByteStream;
/**
* HTTP headers of the response */
readonly headers: {
readonly [key: string]: string;
};
}
//# sourceMappingURL=fetchResponse.generated.d.ts.map