From 1b5fb2a8454f69ccf9727bfb493e8b66cd1044d2 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Fri, 7 Jan 2022 09:58:54 -0800 Subject: [PATCH] fix: msg imports in type definitions 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;