From 07a75dee8de13b6c5a02959325a0155d413d6712 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Fri, 7 Jan 2022 10:11:13 -0800 Subject: [PATCH] fix: msg imports in type definitions (#5858) This is a copy of https://github.com/google/blockly/pull/5846/files against master, which will fix https://github.com/google/blockly/issues/5841 in the next patch release. When we released v7 we committed to making patch releases for typescript definition errors, since our pipeline for typings was convoluted this quarter. --- 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;