From 93444c58db259bb1e5073d4e815a5aab65440e33 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 bf8d1756..a1b1693e 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 {