aboutsummaryrefslogtreecommitdiff
path: root/ext/js/templates
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-27 23:05:37 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-27 23:05:37 -0500
commitec67de5c0c4abc11232d3f3a8a8e9bb2fe045daa (patch)
treefa3b904556ddcb9f7248bc1628064755e072f8f5 /ext/js/templates
parenta834a57a8a960b72190148f49ef52a6d9c8279e2 (diff)
Update library types
Diffstat (limited to 'ext/js/templates')
-rw-r--r--ext/js/templates/sandbox/template-renderer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/templates/sandbox/template-renderer.js b/ext/js/templates/sandbox/template-renderer.js
index fe240b5f..239240b6 100644
--- a/ext/js/templates/sandbox/template-renderer.js
+++ b/ext/js/templates/sandbox/template-renderer.js
@@ -197,7 +197,7 @@ export class TemplateRenderer {
*/
function wrapper(...args) {
const argCountM1 = Math.max(0, args.length - 1);
- const options = /** @type {Handlebars.HelperOptions} */ (args[argCountM1]);
+ const options = /** @type {import('handlebars').HelperOptions} */ (args[argCountM1]);
args.length = argCountM1;
return helper(args, this, options);
}