aboutsummaryrefslogtreecommitdiff
path: root/types/ext
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-24 23:47:57 -0500
committerGitHub <noreply@github.com>2024-02-25 04:47:57 +0000
commit73169f06dff767020718a5715eba97d3575ba7e1 (patch)
tree99d458f9d2ca74e67dbb4bccd148ef549f7ce2cf /types/ext
parenta21948daf6210f67955ae4f98a81e21b8cf9f1f2 (diff)
Turn on @typescript-eslint/no-unsafe-argument (#728)24.2.26.0
Diffstat (limited to 'types/ext')
-rw-r--r--types/ext/template-renderer.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/types/ext/template-renderer.d.ts b/types/ext/template-renderer.d.ts
index 3f63ea42..335dc61a 100644
--- a/types/ext/template-renderer.d.ts
+++ b/types/ext/template-renderer.d.ts
@@ -57,7 +57,7 @@ export type HelperOptionsFunction<TResult = unknown> = (context: unknown) => TRe
export type HelperOptions = {
fn?: HelperOptionsFunction;
inverse?: HelperOptionsFunction;
- hash: Core.SafeAny;
+ hash: Core.SerializableObject;
data?: Core.SafeAny;
};