Files
blockly/typings/index.d.ts
Rachel Fenichel 07a75dee8d 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.
2022-01-07 10:11:13 -08:00

23 lines
460 B
TypeScript

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Type definitions for Blockly.
* @author samelh@google.com (Sam El-Husseini)
*/
/// <reference path="core.d.ts" />
/// <reference path="blocks.d.ts" />
/// <reference path="javascript.d.ts" />
/// <reference path="msg/msg.d.ts" />
import * as Blockly from './core';
import './blocks';
import './javascript';
import './msg/msg';
export = Blockly;