From a2ffc94e9b03b1913856a4cd95ab182df3a094a0 Mon Sep 17 00:00:00 2001 From: Shalom Steinbach Date: Wed, 13 Jan 2021 22:00:02 +0200 Subject: [PATCH] fix numeral.js Typescript error --- src/util/ZmanimFormatter.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/ZmanimFormatter.ts b/src/util/ZmanimFormatter.ts index d2dfefc..2480ae5 100644 --- a/src/util/ZmanimFormatter.ts +++ b/src/util/ZmanimFormatter.ts @@ -1,5 +1,6 @@ import { DateTime } from 'luxon'; -import * as numeral from 'numeral'; +import * as numeral_ from 'numeral'; +const numeral = numeral_; import { TimeZone, Utils } from '../polyfills/Utils'; import { Time } from './Time';