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.
This commit is contained in:
Rachel Fenichel
2022-01-07 10:11:13 -08:00
committed by GitHub
parent 4e87be7069
commit 07a75dee8d

4
typings/index.d.ts vendored
View File

@@ -12,11 +12,11 @@
/// <reference path="core.d.ts" />
/// <reference path="blocks.d.ts" />
/// <reference path="javascript.d.ts" />
/// <reference path="msg/en.d.ts" />
/// <reference path="msg/msg.d.ts" />
import * as Blockly from './core';
import './blocks';
import './javascript';
import './msg/en';
import './msg/msg';
export = Blockly;