Skip to content

Commit

Permalink
fix: msg imports in type definitions (google#5858)
Browse files Browse the repository at this point in the history
This is a copy of https://github.com/google/blockly/pull/5846/files against master, which will fix google#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.
  • Loading branch information
rachel-fenichel authored Jan 7, 2022
1 parent 4e87be7 commit 07a75de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 07a75de

Please sign in to comment.