Interface FeedFetchResponse

The serialized response from feedFetch — the same shape hostFetch returns, because reading a feed should feel like reading a fetch. The difference is entirely in what you may ASK for.

interface FeedFetchResponse {
    body: string;
    headers: Record<string, string>;
    status: number;
    statusText: string;
    truncated: boolean;
}

Properties

body: string
headers: Record<string, string>
status: number
statusText: string
truncated: boolean

True if the body hit the host's size cap and was truncated.