Interface CacheMissEvent

Cache miss requiring network fetch.

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

Properties

Properties

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