diff --git a/backend/src/common/cache.js b/backend/src/common/cache.js index 0961863d..b5e8e432 100644 --- a/backend/src/common/cache.js +++ b/backend/src/common/cache.js @@ -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