diff --git a/src/domain/fallbackPolicy.js b/src/domain/fallbackPolicy.js index 58b2cca6f4..7a7268c9b2 100644 --- a/src/domain/fallbackPolicy.js +++ b/src/domain/fallbackPolicy.js @@ -93,6 +93,7 @@ export function removeFallback(model) { * @returns {Record} */ export function getAllFallbackChains() { + /** @type {Record} */ const result = {}; for (const [model, chain] of fallbackChains.entries()) { result[model] = chain;