interface IncrementalResponseCacheEntry {
    cacheControl?: CacheControl;
    isMiss?: boolean;
    isStale?: boolean | -1;
    revalidateAfter?: Revalidate;
    value: null | CachedRedirectValue | IncrementalCachedPageValue | IncrementalCachedAppPageValue | CachedImageValue | CachedRouteValue;
}

Properties

cacheControl?: CacheControl
isMiss?: boolean
isStale?: boolean | -1

-1 here dictates a blocking revalidate should be used

revalidateAfter?: Revalidate

timestamp in milliseconds to revalidate after