From b90091e879761dc9eb4b8572d69d576a65459548 Mon Sep 17 00:00:00 2001 From: Yohann Coppel Date: Sun, 2 Jan 2022 15:14:55 -0800 Subject: [PATCH] Fix msg imports in typedefs. Fixes #5841. --- typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 10324babc54..fd92cae723f 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -12,11 +12,11 @@ /// /// /// -/// +/// import * as Blockly from './core'; import './blocks'; import './javascript'; -import './msg/en'; +import './msg/msg'; export = Blockly;