From 44e257c4b9dc4df0da7c43e9efc440dc78c51b9d Mon Sep 17 00:00:00 2001 From: Alexandr Date: Sat, 18 Oct 2025 20:57:24 +0300 Subject: [PATCH] fix: resolve vscode type errors inside access module --- src/common/access.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/access.js b/src/common/access.js index 891518329454b..25777356b55c5 100644 --- a/src/common/access.js +++ b/src/common/access.js @@ -12,7 +12,7 @@ const BLACKLISTED_MESSAGE = "This username is blacklisted"; * Guards access using whitelist/blacklist. * * @param {Object} args The parameters object. - * @param {Object} args.res The response object. + * @param {any} args.res The response object. * @param {string} args.id Resource identifier (username or gist id). * @param {"username"|"gist"|"wakatime"} args.type The type of identifier. * @param {{ title_color?: string, text_color?: string, bg_color?: string, border_color?: string, theme?: string }} args.colors Color options for the error card.