feat(types): set hash to be a Record<string, any>

Resolves #2001
This commit is contained in:
Jonas Thelemann
2023-09-08 17:20:07 +02:00
committed by Jakob Linskeseder
parent 0bc9f634ca
commit cb828aa282
+1 -1
View File
@@ -45,7 +45,7 @@ declare namespace Handlebars {
export interface HelperOptions {
fn: TemplateDelegate;
inverse: TemplateDelegate;
hash: any;
hash: Record<string, any>;
data?: any;
}