Type Alias HttpResCacheControl

HttpResCacheControl: StrIntellisense<
    | "no-cache"
    | "no-store"
    | "public"
    | "private"
    | "must-revalidate"
    | "proxy-revalidate"
    | "immutable"
    | "no-transform"
    | `max-age=${number}`
    | `s-maxage=${number}`
    | `stale-while-revalidate=${number}`
    | `stale-if-error=${number}`,
>

Well-known Cache-Control directive values for HTTP responses. Controls how browsers and intermediate caches store and revalidate the response.

IMPORT_PATH: "@daiso-tech/core/http-router/contracts"