fix: resolve vscode type errors in cache utils (#4559)

Co-authored-by: Alexandr <qwerty541zxc@gmail.com>
This commit is contained in:
Ophelia Goldstein
2025-10-11 22:52:45 +03:00
committed by GitHub
co-authored by Alexandr
parent 33f0c9153e
commit 92d6dfa226
+3 -3
View File
@@ -86,7 +86,7 @@ const resolveCacheSeconds = ({ requested, def, min, max }) => {
/**
* Disables caching by setting appropriate headers on the response object.
*
* @param {Object} res The response object.
* @param {any} res The response object.
*/
const disableCaching = (res) => {
// Disable caching for browsers, shared caches/CDNs, and GitHub Camo.
@@ -101,7 +101,7 @@ const disableCaching = (res) => {
/**
* Sets the Cache-Control headers on the response object.
*
* @param {Object} res The response object.
* @param {any} res The response object.
* @param {number} cacheSeconds The cache seconds to set in the headers.
*/
const setCacheHeaders = (res, cacheSeconds) => {
@@ -121,7 +121,7 @@ const setCacheHeaders = (res, cacheSeconds) => {
/**
* Sets the Cache-Control headers for error responses on the response object.
*
* @param {Object} res The response object.
* @param {any} res The response object.
*/
const setErrorCacheHeaders = (res) => {
const envCacheSeconds = process.env.CACHE_SECONDS