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-25 18:34:39 +02:00
committed by martin-mfg
co-authored by Alexandr
parent 72c4e96bfe
commit 58570c42f7
+3 -3
View File
@@ -87,7 +87,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.
@@ -102,7 +102,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) => {
@@ -122,7 +122,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