@triply/triplydb
    Preparing search index...

    Interface CachedResult

    A response held in a Cache.

    interface CachedResult {
        contentType: string | null;
        nextPage: string | null;
        responseText: string;
        statusCode: number;
        statusText: string;
    }
    Index
    contentType: string | null

    Content type of the stored body, or null when the response carried none.

    nextPage: string | null

    URL of the next page, or null on the last one. Keeps paging working from the cache.

    responseText: string

    The response body, as text.

    statusCode: number

    HTTP status of the response that was stored.

    statusText: string

    HTTP status text of the response that was stored.