diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 23:05:37 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-27 23:05:37 -0500 |
commit | ec67de5c0c4abc11232d3f3a8a8e9bb2fe045daa (patch) | |
tree | fa3b904556ddcb9f7248bc1628064755e072f8f5 /ext/js/templates | |
parent | a834a57a8a960b72190148f49ef52a6d9c8279e2 (diff) |
Update library types
Diffstat (limited to 'ext/js/templates')
-rw-r--r-- | ext/js/templates/sandbox/template-renderer.js | 2 |
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); } |