Interface CacheMissEvent

Cache miss requiring network fetch.

interface CacheMissEvent {
    reason: "invalid" | "expired" | "not-found";
    timestamp: number;
    url: string;
}

Properties

Properties

reason: "invalid" | "expired" | "not-found"
timestamp: number
url: string