From 39c8ef4ddb2f299380fe53c8c2493ac6f2bbb43a Mon Sep 17 00:00:00 2001 From: David Sevilla Martin Date: Wed, 1 Jan 2020 16:23:25 -0500 Subject: [PATCH] Remove dayjs from flarum/core specific shims --- js/shims.d.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/shims.d.ts b/js/shims.d.ts index 727405797..3712491e8 100644 --- a/js/shims.d.ts +++ b/js/shims.d.ts @@ -1,9 +1,5 @@ -import * as _dayjs from 'dayjs'; - import Forum from './src/forum/Forum'; declare global { - const dayjs: typeof _dayjs; - const app: Forum; }