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 Jay Linski
parent 08fddee033
commit de4414d7fc
+1 -1
View File
@@ -39,7 +39,7 @@ declare namespace Handlebars {
export interface HelperOptions {
fn: TemplateDelegate;
inverse: TemplateDelegate;
hash: any;
hash: Record<string, any>;
data?: any;
}