From 380ca700d6a6cb2c31ee953e3a4e4038c6ae2606 Mon Sep 17 00:00:00 2001 From: Matt Hinchliffe Date: Tue, 24 Sep 2019 14:02:55 +0100 Subject: [PATCH] Ensure allowCallsToHelperMissing runtime option is optional in typings --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index bf8d17564..a1b1693e9 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -29,7 +29,7 @@ declare namespace Handlebars { decorators?: { [name: string]: Function }; data?: any; blockParams?: any[]; - allowCallsToHelperMissing: boolean; + allowCallsToHelperMissing?: boolean; } export interface HelperOptions {