From 695f694b70f5ad618eb4abd4e9d6344d11450d2d Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 13 May 2026 12:46:20 +0100 Subject: [PATCH] test(tooling): type plugin inventory extras --- scripts/generate-plugin-inventory-doc.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/generate-plugin-inventory-doc.mjs b/scripts/generate-plugin-inventory-doc.mjs index 93bbbfe6102..cb9efda5ae6 100644 --- a/scripts/generate-plugin-inventory-doc.mjs +++ b/scripts/generate-plugin-inventory-doc.mjs @@ -28,7 +28,8 @@ const PLUGIN_DOC_ALIASES = new Map([ ["tavily", "/tools/tavily"], ["tokenjuice", "/tools/tokenjuice"], ]); -const PLUGIN_REFERENCE_EXTRA_SECTIONS = new Map([]); +/** @type {Map} */ +const PLUGIN_REFERENCE_EXTRA_SECTIONS = new Map(); function readJson(relativePath) { return JSON.parse(fs.readFileSync(path.join(ROOT, relativePath), "utf8"));